0 votes
in Sql by

What is the difference between DROP and TRUNCATE?

1 Answer

0 votes
by

TRUNCATE removes all rows from the table which cannot be retrieved back, DROP removes the entire table from the database and it also cannot be retrieved back.

...