How to Delete Table in MySQL Command

How to delete table in mysql command - If I have previously explained how to change the table name in mysql, then in this article I will explain about how to delete the table in mysql. For those of you who do not know how, please see the following explanation.
Before starting the tutorial delete the table in mysql, you should first learn: How to Create Table in MySQL using CMD.
To delete a table, the general form of the SQL command is as follows:
DROP TABLE table_name;
For example we will delete the table with the name " college_student " then its SQL command is:
DROP TABLE college_student;
So if it works then it will look like in the picture below.
How to Delete Table in MySQL Command
How to Delete Table in MySQL Command

Easy enough "how to delete table in mysql". That's a simple tutorial from this php programming language blog. Hopefully this information can be useful for all of you.

Comments