Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Truncate vs Delete
00:00
5 left

Truncate vs Delete

MediumSQL · PostgreSQL

Problem

What is the difference between TRUNCATE and DELETE in SQL?

Asked in the Technical Phone Screen stage. SQL DDL vs DML commands.

Output

  1. Explain the difference in how each command removes rows.
  2. Explain the difference in transaction behavior and rollback support.
  3. Explain the difference in identity or sequence handling.
  4. Explain any restrictions that affect when each command can be used.

Schema

table_name
ColumnTypeDescription
idPKINTPrimary key
statusVARCHAR(20)Row status
created_atTIMESTAMPRow creation timestamp
Tablestable_name
Interviewer

Your question is Truncate vs Delete. Start with the requirements and the one table in the Question tab.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.
CodePostgreSQL
You need to log in / sign up to run or submit.Ln 1
Run your query to see results here.