PDF download Download Article PDF download Download Article

This wikiHow teaches you how to use your computer's command line to delete a MySQL database. In order to delete a MySQL database, you must have access to an account with delete privileges, such as the "root" account.

  1. Open the MySQL Command Line . In order to delete a database in MySQL, you'll need to use the MySQL command line from your computer's Command Prompt (Windows) or Terminal (Mac) program.
  2. Type in the following, then press Enter .
     mysql 
     - 
     u 
     root 
     - 
     p 
    
    • If you don't have access to the root account, enter your own username in place of "root". This must be an account that has read/write privileges.
    Advertisement
  3. Type in the password you use to log into MySQL, then press Enter .
  4. Once MySQL opens, type in the following command and press Enter to see a list of your MySQL databases:
     SHOW 
     DATABASES 
     ; 
    
  5. Scroll through the databases until you find the one you want to delete, making sure to note its name as it appears above the database. [1]
    • If you're using a Mac, database names are case-sensitive. This means that if the database's name has capital letters, you'll need to use the proper capitalization in the "delete" command to make sure you delete the correct database.
  6. Type in DROP DATABASE name; where name is your database's name, then press Enter . For example, to delete a database named "Flowers", you would enter the following command:
     DROP 
     DATABASE 
     Flowers 
     ; 
    
  7. You can ensure that the database was deleted by re-entering the SHOW DATABASES; command and scrolling through your available databases. The one you deleted should not be present.
  8. Advertisement

Community Q&A

Search
Add New Question
  • Question
    What does it mean if I get "Error 1010 (HY000): Error dropping database (can't rmdir './xxxxxx', errno: 39)"?
    Community Answer
    You have to stop the database, go to datadir, remove that database manually and restart the database.
  • Question
    Why does a dropped database still appear and run in Workbench in the MySQL monitor?
    Community Answer
    Try "sudo service mysql restart." If your MySQL service is named something else, you may have to change the command accordingly. You can also try "sudo /etc/init.d/mysql restart."
Ask a Question
      Advertisement

      Video

      Tips

      • If you aren't sure whether or not the database exists, entering DROP DATABASE IF EXISTS name; will prevent an error from displaying if the database isn't registered.
      • In the unlikely event that you're deleting a database from a server not using localhost, you'll type the login command as mysql -u root -h host -p where "host" is the IP address of your server.
      Submit a Tip
      All tip submissions are carefully reviewed before being published
      Thanks for submitting a tip for review!
      Advertisement

      Warnings

      • Not all users have read/write privileges. Make sure you're using an account that allows you to delete databases (e.g., the root account).
      Advertisement

      About This Article

      Article Summary X

      1. Log into the MySQL command line using an account that can delete databases (e.g., "root").
      2. Enter SHOW DATABASES; to see a list of your databases.
      3. Find the name of the database you want to delete.
      4. Enter DROP DATABASE name; where "name" is the name of the database.

      Did this summary help you?
      Thanks to all authors for creating a page that has been read 812,355 times.

      Is this article up to date?

      Advertisement