What is the purpose of DROP TABLE command in MySQL? How is it different from DELETE command?

DROP TABLE is Data Definition Language (DDL) Command which is used to delete entire table including all schema (structure and constraints) and records.

DROP TABLEDELETE
Delete entire schemaDelete records only
WHERE clause can not be usedWHERE clause can be used
It is DDLIt is DML
error: Content is protected !!