It is possible to drop multiple tables in the same statement.
A. True
B. False
Answer: Option A
Solution (By Examveda Team)
This question is asking about dropping multiple tables in MySQL.Dropping a table means permanently deleting it from the database.
The question is asking if you can drop more than one table at the same time using a single command.
The answer is True.
In MySQL, you can use a single statement to drop multiple tables. You can achieve this by listing the table names separated by commas after the `DROP TABLE` command.
For example: ```sql DROP TABLE table1, table2, table3; ``` This command would drop all three tables (table1, table2, and table3).

Join The Discussion