Which SQL command is used to remove a table structure and all of its records permanently from a database schema?
ADELETE
BTRUNCATE
CDROP
DREMOVE
Explanation
DROP TABLE deletes both the table structure and its data permanently (DDL command). TRUNCATE removes all rows while keeping the structure intact, and DELETE removes selected rows (DML command).
Exam Relevance
- Topic: Database Management Systems
- Subtopic: SQL Commands (DDL vs DML)

No Comments