我正在尝试使用索引更新行。但由于某种原因,它一直给我一个错误。
是否有人能够帮助解决这个问题。我无法让它发挥作用。 以下是我的查询
UPDATE invalid_login_attempts SET attempts = 4 last_attempt=CURRENT_TIMESTAMP WHERE id = 2
提前致谢!
答案 0 :(得分:0)
set
子句中的两个表达式之间缺少逗号:
UPDATE invalid_login_attempts
SET attempts = 4, -- This comma was missing
last_attempt = CURRENT_TIMESTAMP
WHERE id = 2