简体   繁体   English

更新语句中的MySQL错误1064

[英]MySQL error 1064 in update statement

mysql> Update table product_tb set quantity=90 where pid=2; mysql>更新表product_tb set quantity = 90其中pid = 2;

ERROR 1064 (42000): You have an error in your SQL syntax; 错误1064(42000):您的SQL语法有错误; check the manual that corresponds to your MySQL server version for the right syntax to use near 'table product_tb set quantity=90 where pid=2' at line 1 查看与您的MySQL服务器版本对应的手册,以便在'table product_tb set quantity = 90附近使用正确的语法,其中pid = 2'在第1行

Remove the table keyword from the query, because it is not required here. 从查询中删除table关键字,因为这里不需要它。

Try this:: 尝试这个::

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

Update product_tb set quantity=90 where pid=2;

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM