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