我在 MySQL 中有一个表,列名称为 1960、1961、1962 等。记录已成功插入。当我尝试使用查询更新表时
UPDATE table1 SET 1960=0.0 WHERE id = 'abc'
它给:
You have an error in your SQL syntax; check the manual that corresponds to your
MySQL server version for the right syntax to use near '1960=0.0 WHERE id='abc' at line 1
是由于列名作为数字还是其他错误?