write a command to drop the table after checking it's existence
Attachments:
Answers
Answered by
0
Answer:
KESE
Explanation:
KESE
Answered by
0
Answer:
To remove a table in MySQL, use the DROP TABLE statement. The basic syntax of the command is as follows:
DROP [TEMPORARY] TABLE [IF EXISTS] table_name [, table_name] [RESTRICT | CASCADE];
Similar questions