C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
MySQL DROP TableMYSQL uses a Drop Table statement to delete the existing table. This statement removes the complete data of a table along with the whole structure or definition permanently from the database. So, you must be very careful while removing the table because we cannot recover the lost data after deleting it. SyntaxThe following are the syntax to remove the table in MySQL: mysql> DROP TABLE table_name; OR, mysql> DROP TABLE schema_name.table_name; The full syntax of DROP TABLE statement in MySQL is: DROP [ TEMPORARY ] TABLE [ IF EXISTS ] table_name [ RESTRICT | CASCADE ]; The above syntax used many parameters or arguments. Let us discuss each in detail:
NOTE: It is to be noted that you must have a DROP privileges to execute the DROP TABLE statement in the MySQL.ExampleThis example specifies how we can drop an existing table from the database. Suppose our database contains a table "orders" as shown in the image below: To delete the above table, we need to run the following statement: mysql> DROP TABLE orders; It will remove the table permanently. We can also check the table is present or not as shown in the below output: If we try to delete a table that does not exist in the database, we will get an error message as given below: If we use the IF EXISTS clause with the DROP TABLE statement, MySQL gives the warning message which can be shown in the below output: How to DROP table in Workbench1. To delete a table, you need to choose the table, right-click on it, and select the Drop Table option. The following screen appears: 2. Select Drop Now option in the popup window to delete the table from the database instantly. MySQL DROP Multiple TableSometimes we want to delete more than one table from the database. In that case, we have to use the table names and separate them by using the comma operator. The following statement can be used to remove multiple tables: DROP TABLE IF EXISTS table_name1, table_name2, table, ......., table_nameN; MySQL TRUNCATE Table vs. DROP TableYou can also use the DROP TABLE command to delete the complete table, but it will remove complete table data and structure both. You need to re-create the table again if you have to store some data. But in the case of TRUNCATE TABLE, it removes only table data, not structure. You don't need to re-create the table again because the table structure already exists.
Next TopicMySQL Temporary Table
|