DROP TABLE is Data Definition Language (DDL) Command which is used to delete entire table including all schema (structure and constraints) and records.
DROP TABLE | DELETE |
---|---|
Delete entire schema | Delete records only |
WHERE clause can not be used | WHERE clause can be used |
It is DDL | It is DML |