What is the difference between DELETE and TRUNCATE?

Answers were Sorted based on User's Feedback



What is the difference between DELETE and TRUNCATE?..

Answer / shilpa

Delete command delets one row or whole table with table
defination but truncate command only delete table not table
defination

Is This Answer Correct ?    2 Yes 1 No

What is the difference between DELETE and TRUNCATE?..

Answer / debi

1.when we use delete command then the records from the
table is not deleted permanently so that when we further
use rollback command the records are again available in the
table but in case of truncate the data is permenently
deleted from the table.
2.in case of truncate data deletion is faster as compared
to delete
3.
we can't use ant where condition in case if truncate

Is This Answer Correct ?    2 Yes 2 No

What is the difference between DELETE and TRUNCATE?..

Answer / raam

Delete command will remove the data values ( all the
records of table) and space and table structure will be
ramain. We cannot free the space and remove the table
structure using Delete command.
Truncate command will free the memory and removes table
structure from data dictionary.

ramumcato@yahoo.com

Is This Answer Correct ?    9 Yes 11 No

What is the difference between DELETE and TRUNCATE?..

Answer / sanjay keserwani

we can go upto some number of records through delete while
in truncate we have to unoccupied all records.

Is This Answer Correct ?    4 Yes 7 No

What is the difference between DELETE and TRUNCATE?..

Answer / amol

Be very careful when deleting records. You cannot undo this
statement! but in mysql...

Is This Answer Correct ?    0 Yes 5 No

Post New Answer

More SQL PLSQL Interview Questions

wht is the difference between truncat,drop in sqlserver wht is the difference between function and stored procedure

3 Answers   Apollo,


Why indexing is needed?

0 Answers  


Is mariadb a nosql database?

0 Answers  


Are subqueries faster than joins?

0 Answers  


What are different methods to trace the pl/sql code?

0 Answers  






what is the difference between a having clause and a where clause? : Sql dba

0 Answers  


what is the use of anchoring object? what r the difference between anchoring object & enclosing object? can any one tell me all the details?

0 Answers  


How do I save a sql query?

0 Answers  


how to show all tables with 'mysql'? : Sql dba

0 Answers  


Do we need to create index on primary key?

0 Answers  


Differentiate between sga and pga.

0 Answers  


How to get each name only once from an employee table?

0 Answers  


Categories