Delete a database in phpMyAdmin

前端 未结 16 1138
面向向阳花
面向向阳花 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: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;
    

提交回复
热议问题