Google News
logo
MySQL - Interview Questions
How to delete a table in MySQL?
We can delete a table in MySQL using the Drop Table statement. This statement removes the complete data of a table, including structure and definition from the database permanently. Therefore, it is required to be careful while deleting a table. After using the statement, we cannot recover the table in MySQL. The statement is as follows :
 
DROP TABLE  table_name;

Advertisement