码迷,mamicode.com
首页 > 数据库 > 详细

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

时间:2018-02-03 19:58:20      阅读:280      评论:0      收藏:0      [点我收藏+]

标签:sch   weight   col   orm   win   gpo   创建   ima   管理   

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


 

 

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

 

 

错误的代码展示

mysql> create database database;
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that
corresponds to your MySQL server version for the right syntax to use near datab
ase at line 1
mysql> create database @@@@;
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that
corresponds to your MySQL server version for the right syntax to use near @@@@
 at line 1

 

 

正确的代码及效果

mysql> create database `database`;
Query OK, 1 row affected (0.00 sec)

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

mysql>

 

mysql> create database `@@@@`;
Query OK, 1 row affected (0.03 sec)

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

mysql>

  

  


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

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

标签:sch   weight   col   orm   win   gpo   创建   ima   管理   

原文地址:https://www.cnblogs.com/jizuiku/p/8410455.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!