首頁  >  文章  >  資料庫  >  我們如何使用 mysqladmin 刪除現有資料庫?

我們如何使用 mysqladmin 刪除現有資料庫?

王林
王林轉載
2023-09-09 08:09:17963瀏覽

我们如何使用 mysqladmin 删除现有数据库?

我們需要特殊權限來建立或刪除 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 刪除現有資料庫?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除