有条件的重复键更新(仅在特定条件为真时更新)
Posted
技术标签:
【中文标题】有条件的重复键更新(仅在特定条件为真时更新)【英文标题】:Conditional ON DUPLICATE KEY UPDATE (Update only if certain condition is true) 【发布时间】:2013-05-11 09:40:53 【问题描述】:我正在使用以下查询:
INSERT INTO userlist (username, lastupdate, programruncount, ip)
VALUES (:username, NOW(), 1, :ip)
ON DUPLICATE KEY UPDATE
lastupdate = NOW(), programruncount = programruncount + 1, ip = :ip;
但是,我也想让ON DUPLICATE KEY UPDATE
有条件,所以它会执行以下操作:
lastupdate
不到 20 分钟前 (lastupdate > NOW() - INTERVAL 20 MINUTE
)。
正确:更新lastupdate = NOW()
,给programruncount
加一,然后更新ip = :ip
。
错误:所有字段都应保持不变。
我不太确定该怎么做,但环顾四周后,我尝试在ON DUPLICATE KEY UPDATE
部分中使用IF
语句。
INSERT INTO userlist (username, lastupdate, programruncount, ip)
VALUES ("testuser", NOW(), "1", "127.0.0.1")
ON DUPLICATE KEY UPDATE
IF(lastupdate > NOW() - INTERVAL 20 MINUTE, VALUES(lastupdate, programruncount + 1),
lastupdate, programruncount);
但是我收到以下错误:#1064 - 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 'IF(lastupdate > NOW() - INTERVAL 20 MINUTE, VALUES(lastupdate, programruncount +' at line 6
【问题讨论】:
我敢打赌,来到这里的每个人都是为了保护他们的网站免受这些恼人的自动化攻击(SQL 注入脚本等) 【参考方案1】:你错误地使用了 IF 语句
INSERT INTO userlist (username, lastupdate, programruncount, ip)
VALUES (:username, NOW(), 1, :ip)
ON DUPLICATE KEY UPDATE
lastupdate = IF(lastupdate > NOW() - INTERVAL 20 MINUTE, NOW(), lastupdate),
programruncount = IF(lastupdate > NOW() - INTERVAL 20 MINUTE, programruncount + 1, programruncount),
ip = IF(lastupdate > NOW() - INTERVAL 20 MINUTE, :ip, ip);
所以 IF 检查条件并返回作为参数提供的两个值之一。见MySQL's Flow Control Operators。
【讨论】:
以上是关于有条件的重复键更新(仅在特定条件为真时更新)的主要内容,如果未能解决你的问题,请参考以下文章
使用具有不同分隔符的 sed 查找特定条件为真时的 Bash