Database Fundamentals — Question 125
Which command should you use to remove a table from a database?
Answer options
- A. REMOVE TABLE
- B. UPDATE TABLE
- C. DROP TABLE
- D. DELETE TABLE
Correct answer: C
Explanation
The correct command to remove a table from a database is 'DROP TABLE', as it effectively deletes the table and all its data. 'REMOVE TABLE' and 'DELETE TABLE' are not valid SQL commands, while 'UPDATE TABLE' is used to modify existing records rather than remove a table.