mysql5.7基础 drop database if exists... 删除数据库前判断它是否存在

Posted jizuiku

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql5.7基础 drop database if exists... 删除数据库前判断它是否存在相关的知识,希望对你有一定的参考价值。

礼悟:
     公恒学思合行悟,尊师重道存感恩。叶见寻根三返一,江河湖海同一体。
          虚怀若谷良心主,愿行无悔给最苦。读书锻炼养身心,诚劝且行且珍惜。


 

 

  数据、数据,命根就在数据。操作数据库一定要谨慎小心。给最苦 这里的代码,看看就好,要有自己的判断。遇到抉择,要不耻上下问。 
               mysql:5.7
                     os:Windows7 x64

 

 

代码及效果

mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| @@@@               |
| database           |
| mysql              |
| newbases           |
| performance_schema |
| test               |
+--------------------+
7 rows in set (0.00 sec)

mysql> drop database if exists aaa;
Query OK, 0 rows affected, 1 warning (0.00 sec)

 

mysql> drop database if exists `@@@@`;
Query OK, 0 rows affected (0.01 sec)

mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| database           |
| mysql              |
| newbases           |
| performance_schema |
| test               |
+--------------------+
6 rows in set (0.00 sec)

mysql>

 

  


mysql,关系型数据库管理系统,优秀,值得学习。
学习资源:itcast和itheima视频库 + 清净的心地。
如果您有公开的资源,可以分享给我的话,用您的资源学习也可以。
博文是观看视频后,融入思考写成的。博文好,是老师讲得好。博文坏,是 给最苦 没认真。







以上是关于mysql5.7基础 drop database if exists... 删除数据库前判断它是否存在的主要内容,如果未能解决你的问题,请参考以下文章

mysql5.7基础 如果指定数据库存在,就删除

mysql5.7基础 show create database... 查看一个数据库用的是什么字符编码

mysql5.7基础 create database... 创建的数据库的名字是 关键字特殊字符,用反引号

mysql5.7基础 alter database...charset=... 修改数据库的字符编码 将utf8改为gbk

mysql5.7基础 create database if not exists... 判断数据库是否存在 若不存在则创建

mysql5.7基础 create database...charset=... 创建一个新的数据库并指定它的字符编码