我正在使用MySQL DB。更新字段值失敗
我有一張汽車表,通過描述這張表describe cars
,我看到這張表的「flag
」字段的類型爲tinyint(1)
。
我試圖通過執行以下命令在該表更新「flag
」字段的所有記錄的值:
UPDATE TABLE cars SET flag=0;
,但失敗了,錯誤消息是:
ERROR 1064 (42000): 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 UPDATE TABLE cars SET flag=0
爲什麼失敗?如何解決它?