0

How to delete a table in MySQL Database

How can i delete a table alone from my MySQL Database, what is the command used to delete a table in MySQL?

Database MySQL Add a comment
stalkjonas
asked Feb 08 2018

Answer

0

Use the below command inside mysql prompt to delete a table you required

drop table table_name;
Add a comment
parthiban
asked Feb 09 2018
edited Oct 05 2018
Post your Answer