我們需要特殊權限來創建或刪除 MySQL 數據庫。以下是使用 mysqladmin?binary 刪除數據庫的語法 –
語法
[root@host]# mysqladmin -u root -p drop db_name Enter password:******
登錄后復制
在這里,db_name 是我們想要刪除的數據庫的名稱。
示例
以下是一個刪除名為TUTORIALS的數據庫的示例:
[root@host]# mysqladmin -u root -p drop TUTORIALS Enter password:******
登錄后復制
上面的語句會給你一個警告,并確認你是否真的要刪除這個數據庫。
Dropping the database is potentially a very bad thing to do. Any data stored in the database will be destroyed. Do you really want to drop the 'TUTORIALS' database [y/N] y Database "TUTORIALS" dropped
登錄后復制
以上就是我們如何使用 mysqladmin 刪除現有數據庫?的詳細內容,更多請關注www.92cms.cn其它相關文章!