在此服务器版本中,“(”在当前位置无效

时间:2019-06-07 03:25:19

标签: mysql

我确实想使用MySQL将数据插入到我的Google Cloud数据库中,我与其他表做得相当好。

我的数据库结构:

  • item_id int(11)主键-自动递增
  • bill_id int(11)外键
  • 名称文字
  • 单位文字
  • 数量int(11)
  • 使用长文本
  • 价格浮动

INSERT INTO BillItem (bill_id , name , unit , quantity , price,usage) VALUES ('8','Mebendazol 500 mg','Viên','5','2500','Chiều trước khi ăn') ;

再次,非常感谢您的协助!

1 个答案:

答案 0 :(得分:1)

这里的问题是您使用的是保留字:usage

请参阅https://dev.mysql.com/doc/refman/8.0/en/keywords.html#keywords-8-0-detailed-U

要解决此问题,请避免使用保留字,否则请在保留字周围使用反引号。 `usage`