Home > Database > Mysql Tutorial > body text

mysql中表名叫关键字的处理方法

WBOY
Release: 2016-06-07 16:25:12
Original
956 people have browsed it

mysql中表名为关键字的处理方法 ? 这是一条简单sql语句,向order表里插入数据。看到哪里错了吗? INSERT INTO order VALUES ('1471', 'go-1471-1-3340'); 执行的时候会报错: [Err] 1064 - You have an error in your SQL syntax; check the manual that corr

mysql中表名为关键字的处理方法
?
这是一条简单sql语句,向order表里插入数据。看到哪里错了吗?
Copy after login
 INSERT INTO order VALUES ('1471', 'go-1471-1-3340');
Copy after login
Copy after login
Copy after login
执行的时候会报错:
Copy after login
[Err] 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 'order VALUES ('1471', 'go-1471-1-3340') at line 1
Copy after login
Copy after login
Copy after login
问题和解决方法:
Copy after login
      表名order使用了mysql的关键字,需要把 order 用撇号`括起来,就是键盘上数据1左边的那个键.
INSERT INTO `order` VALUES......
Copy after login
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!