暂无图片
暂无图片
暂无图片
暂无图片
暂无图片

mysql基础 drop database if exists... 若数据库存在则删除

  •        OS : Ubuntu 18.04.1 LTS
  •        DBMS : mysql 8.0.12

示例

stu@Ubuntu:~$ mysql -u root -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 92 Server version: 8.0.12 MySQL Community Server - GPL Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> show databases; +--------------------+ | Database | +--------------------+ | db_herbal_medicine | | employees | | information_schema | | mysql | | performance_schema | | sys | +--------------------+ 6 rows in set (0.00 sec) mysql> drop database if exists db_herbal_medicine; Query OK, 0 rows affected (0.08 sec) mysql> show databases; +--------------------+ | Database | +--------------------+ | employees | | information_schema | | mysql | | performance_schema | | sys | +--------------------+ 5 rows in set (0.00 sec) mysql> drop database if exists db_herbal_medicine; Query OK, 0 rows affected, 1 warning (0.00 sec) mysql> exit Bye stu@Ubuntu:~$

扩展

  • 在[1]中提到的:“先通过drop database if exists aa试图删除一个不存在的数据库aa,系统出现提示1warning,此时通过show warnings查询显示的是empty set;”。
  • 基于MySQL8进行测试,结果如下所示:
stu@Ubuntu:~$ mysql -u root -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 93 Server version: 8.0.12 MySQL Community Server - GPL Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> show databases; +--------------------+ | Database | +--------------------+ | employees | | information_schema | | mysql | | performance_schema | | sys | +--------------------+ 5 rows in set (0.00 sec) mysql> drop database if exists db_herbal_medicine; Query OK, 0 rows affected, 1 warning (0.00 sec) mysql> show warnings; Empty set (0.00 sec) mysql> \W Show warnings enabled. mysql> drop database if exists db_herbal_medicine; Query OK, 0 rows affected, 1 warning (0.00 sec) Note (Code 1008): Can't drop database 'db_herbal_medicine'; database doesn't exist mysql> \w Show warnings disabled. mysql> exit Bye stu@Ubuntu:~$
  • 如果哪位前辈明白其中的原因,还请指点一二。O(∩_∩)O谢谢

参考资料

学习资源


欢迎各位同学一起来交流学习心得!

最后修改时间:2021-12-16 18:01:37
「喜欢这篇文章,您的关注和赞赏是给作者最好的鼓励」
关注作者
【版权声明】本文为墨天轮用户原创内容,转载时必须标注文章的来源(墨天轮),文章链接,文章作者等基本信息,否则作者和墨天轮有权追究责任。如果您发现墨天轮中有涉嫌抄袭或者侵权的内容,欢迎发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。

文章被以下合辑收录

评论