MySQL 刪除數(shù)據(jù)庫
刪除 mysql 數(shù)據(jù)庫的方式有三種:使用 drop 命令刪除數(shù)據(jù)庫、使用 mysqladmin 刪除數(shù)據(jù)庫、使用 php 刪除數(shù)據(jù)庫。
刪除 mysql 數(shù)據(jù)庫,需要特定的權(quán)限。所以我們使用 root 用戶登錄數(shù)據(jù)庫,root 用戶擁有最高權(quán)限。
數(shù)據(jù)庫一旦刪除數(shù)據(jù),它就會永遠(yuǎn)消失,因此,在執(zhí)行delete語句之前,最好先備份數(shù)據(jù)庫,以防萬一要找回刪除過的數(shù)據(jù)。
1. 使用 drop 命令刪除數(shù)據(jù)庫
drop 命令格式:
drop database <數(shù)據(jù)庫名>;
例如刪除名為 yapf 的數(shù)據(jù)庫:
mysql> drop database yapf;
2. 使用 mysqladmin 刪除數(shù)據(jù)庫
你也可以使用 mysqladmin 命令在終端來執(zhí)行刪除命令。
以下范例刪除數(shù)據(jù)庫 yapf:[root@host]# mysqladmin -u root -p drop yapf enter password:******
執(zhí)行以上刪除數(shù)據(jù)庫命令后,會出現(xiàn)一個提示框,來確認(rèn)是否真的刪除數(shù)據(jù)庫:
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 'yapf' database [y/n] y database "yapf" dropped
3. 使用 php 刪除數(shù)據(jù)庫
php使用 mysqli_query 函數(shù)來創(chuàng)建或者刪除 mysql 數(shù)據(jù)庫。
該函數(shù)有兩個參數(shù),在執(zhí)行成功時返回 true,否則返回 false。
1)php 刪除數(shù)據(jù)庫語法
mysqli_query(connection,query,resultmode);
參數(shù) | 描述 |
---|---|
connection | 必需。規(guī)定要使用的 mysql 連接。 |
query | 必需,規(guī)定查詢字符串。 |
resultmode |
可選。一個常量??梢允窍铝兄抵械娜我庖粋€:
|
2)php 刪除數(shù)據(jù)庫范例
以下范例演示了使用php mysqli_query函數(shù)來刪除數(shù)據(jù)庫: