+3 votes
in Class 12 by kratos

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

1 Answer

+1 vote
by kratos
 
Best answer

| DELETE | DROP |
| (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 WHERE . | (iii) DROP TABLE |

...