phpmyadmin enable drop database statement

后端 未结 19 2354
囚心锁ツ
囚心锁ツ 2021-01-31 03:10

I was alerted by my hosting provider that I exceed my 1000 table limit. I have a lot of databases and would like to delete more at once. Unfortunaltley they don\'t have a multis

19条回答
  •  心在旅途
    2021-01-31 03:56

    did you try deleting the database by logging in to mySQL using SSH if you have not already..

    sudo mysql -u yourmysqlusername -p (enter the password when prompted.)

    mysql> SHOW DATABASES; (find your database)

    mysql> USE YOURDATABSETODROP; (CHANGE THE DATABASE)

    mysql> DROP DATABASE YOURDATABSETODROP; (and you are done.)

提交回复
热议问题