Delete a database in phpMyAdmin

前端 未结 16 868
面向向阳花
面向向阳花 2021-01-31 06:33

By mistake, I have created a duplicate database in the phpMyAdmin page of cPanel. I want to delete this database, but I am not able to find any delete button in the UI.

相关标签:
16条回答
  • 2021-01-31 07:11

    database_name -> Operations -> Remove database -> click on drop the database (DROP)

    0 讨论(0)
  • 2021-01-31 07:12

    There are two ways for delete Database

    1. Run this SQL query -> DROP DATABASE database_name
    2. Click database_name -> Operations ->Remove Database
    0 讨论(0)
  • 2021-01-31 07:13

    You can delete the database in Cpanel.

    In Cpanel go to databases and there you will see all created databases and you can delete this database.

    http://docs.cpanel.net/twiki/bin/view/AllDocumentation/CpanelDocs/MySQLDatabases#Delete a Database

    or other wise on live server if user have privileges you can run command in sql tab of phpmyadmin.

    drop database databasename;
    
    0 讨论(0)
  • 2021-01-31 07:13

    Follow the following steps to delete database in PhpMyAdmin.

    1. Select your database.
    2. Choose the "Operations" tab.
    3. On this page under remove database, you will find a "Drop the database (DROP)"

    Hope this helps.

    0 讨论(0)
  • 2021-01-31 07:13

    How to delete a database in phpMyAdmin?

    From the Operations tab of the database, look for (and click) the text Drop the database (DROP).

    0 讨论(0)
  • 2021-01-31 07:15

    Go to operations tab for the selected database and click "Drop the database (DROP)" to delete it.

    0 讨论(0)
提交回复
热议问题