Home »
MCQs »
Transact-SQL (T-SQL) MCQs
Which of the following commands is used if you want to delete the table?
8. Which of the following commands is used if you want to delete the table?
- DROP TABLE
- DROP TABLE table_name
- DELETE TABLE
- DELETE TABLE table_name
Answer: B) DROP TABLE table_name
Explanation:
DROP TABLE table_name is the command we use if you want to delete the table.