更新语句中的MySQL错误1064

时间:2013-07-10 06:00:13

标签: mysql sql

的MySQL>更新表product_tb set quantity = 90其中pid = 2;

错误1064(42000):您的SQL语法有错误;检查手册 对应于您的MySQL服务器版本,以便在&table;附近使用正确的语法  product_tb set quantity = 90其中pid = 2'在第1行

2 个答案:

答案 0 :(得分:2)

从查询中删除table关键字,因为此处不需要。

试试这个::

Update product_tb set quantity=90 where pid=2

答案 1 :(得分:0)

Update table product_tb set quantity=90 where pid=2;

Update product_tb set quantity=90 where pid=2;