mysql中表名叫关键字的处理方法
程序员文章站
2024-02-07 14:13:28
...
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表里插入数据。看到哪里错了吗?
INSERT INTO order VALUES ('1471', 'go-1471-1-3340');
执行的时候会报错:
[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
问题和解决方法: