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

mysql数据库创建删除带横杠的数据库名

时间:2018-09-15 23:21:23      阅读:267      评论:0      收藏:0      [点我收藏+]

标签:现在   设计   span   mysql   ted   tab   version   bsp   解决   

mysql> create database d-d;

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 ‘-d‘ at line 1

 

1064报错:该错误一般出现在表名或者字段名设计过程中出现了mysql关键字导致的。问题确定是数据库名字的错误,我把横杠去掉以后就可以。

 

尝试:

create database [d-d];

create database ‘d-d‘;

create database ”d-d“;

create database d\-d;

均报错:
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 ‘[d-d]‘ at line 1

解决:create database `d-d`;    加反引号

 

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

mysql数据库创建删除带横杠的数据库名

标签:现在   设计   span   mysql   ted   tab   version   bsp   解决   

原文地址:https://www.cnblogs.com/weifeng1463/p/9652912.html

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