1.

What are the differences between DELETE and DROP commands of SQL?

Answer»
DELETEDROP
(i) DML command(i) DDL command
(ii) Deletes the content of the table.(ii) Deletes the contents and the true of the table.
(iii) DELETE FROM <tablename> WHERE <condition>.(iii) DROP TABLE<Tablename>



Discussion

No Comment Found

Related InterviewSolutions