ERROR 1064 (42000): You have an error in your SQL syntax ... near …

今天在MySQL命令行使用sql语句进行建表时,MySQL 报错,这个问题之前遇到过几次,但是总是会因为疏忽又相遇,今天把这个问题写出来,加深印象吧。

sql语句:

create table 'ceshi'(

'id' int unsigned auto_increment not null,

'name' varchar(100) not null,

primary key('id')

)engine= MyISAM DEFAULT CHARSET=utf8;

看上去这条sql语句确实没毛病,但是运行起来就是报错 

报错信息:

1064 - 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 ''ceshi'( 'id' int unsigned auto_increment not null, 'name' var' at line 1

其实这个问题就是语法上的错误,在MySQL中,为了区分MySQL的关键字与普通字符,MySQL引入了一个反引号。

详情见:https://dev.mysql.com/doc/refman/5.5/en/keywords.html

在上述的sql语句中,列名称使用的是单引号而不是反引号,所以会就报了这个错误出来。修改后

create table `ceshi`(

        `id` int unsigned auto_increment not null,

        `name` varchar(100) not null,

        primary key(`id`)

  )engine= MyISAM DEFAULT CHARSET=utf8

再次运行就不会报错了,但是有一点需要注意,后面列的注释不能用反引号,因为这只是一个普通字符串,不是MySQL的关键字。

在英文键盘输入环境下,按图示按钮输入反引号 `


反引号位置

你可能感兴趣的:(ERROR 1064 (42000): You have an error in your SQL syntax ... near …)