如何使用mysqladmin删除现有数据库?
我们需要特殊权限才能创建或删除MySQL数据库。以下是使用mysqladmin 二进制文件删除数据库的语法 -
语法
[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
广告