我们需要特殊权限来创建或删除 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