Drop or delete a table in MySQL

Home -> Database -> MySQL

80091 views

From the computer of: qmchenry (339 recipes)
Created: Dec 14, 2003     Updated: Oct 12, 2007


Add a comment

Add to:
Add to stumbleuponAdd to del.icio.usDigg itAdd to FURL

To remove a table from a MySQL database, and remove all of its data, use the following SQL command:

drop table if exists recipes;


The command will conditionally delete a table if it exists. The 'if exists' syntax is optional, but is useful when using SQL commands in a file, such as when importing data, as it will not display errors.

The command can be issued from any SQL source including an application with database connectivity (i.e., PHP, Java, etc.) or directly from mysql command (see Connect to a MySQL server using the mysql command for more information).

Subscribe to the Tech-Recipes Newsletter

You can get tips like this delivered in your email every week!

Enter your Email

We will never, ever sell your email address or spam you.





Related recipes:

  Delete a column from an existing MySQL table
  Describe the column structure of a MySQL table
  Rename or change name of MySQL table
  Add a column to an existing MySQL table
  Create a basic MySQL table
  Copy an existing MySQL table to a new table
  Import CSV file directly into MySQL
  Create a MySQL table with a primary key
  Modify an existing MySQL column
  MySQL: Increment an exisitng value

 

Sponsored links

 

Login

Nickname

Password

Don't have an account yet? You can create one. As a registered user you have some advantages like theme manager, comments configuration and post comments with your name.