The SQL statement used to delete a table:
-
DROP
-
DELETE
-
TRUNCATE
-
All the Above
A
Correct answer
Explanation
The statement asks which SQL statement deletes a TABLE (not data). DROP TABLE completely removes the table structure and data from the database. DELETE removes rows but keeps the table, TRUNCATE removes all rows but keeps the table structure. Only DROP removes the table itself.