这是一条简单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

问题和解决方法:
      表名order使用了mysql的关键字,需要把 order 用撇号`括起来,就是键盘上数据1左边的那个键.
INSERT INTO `order` VALUES......

相关文章:

  • 2022-01-21
  • 2022-12-23
  • 2022-12-23
  • 2021-06-09
  • 2021-11-05
  • 2022-12-23
  • 2021-12-20
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-08-17
  • 2022-12-23
  • 2022-12-23
  • 2021-04-30
  • 2021-07-18
  • 2022-12-23
相关资源
相似解决方案