我们如何使用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