我正在使用MySQL workbench更新一个表中的值:update Premiership SET played=16,team=“阿森纳”,WHERE played=14;当我运行此代码时,出现错误:“Where is not valid at this position,expecting a identifier”。知道是什么引起的吗?我尝试了几个修复,但它不起作用。谢谢!
我认为这可能是因为您在where
之前使用了逗号。你必须移除它。正确的方法是:
UPDATE Premiership SET Played=16, Team= "Arsenal" WHERE Played=14;
我希望它是有帮助的!!
再见!!