Which of the following commands will delete the table from MYSQL database?
(a)
DELETE TABLE
(b)
DROP TABLE
(c)
REMOVE TABLE
(d)
ALTER TABLE
Answer:
The drop table command is used to delete a table from the MYSQL database.
Syntax to delete a table from a database:
DROP TABLE table_name ;
So, the correct answer is (b).