MySQL: update a field only if condition is met(MySQL:仅在满足条件时更新字段)
问题描述
是否可以在 MySQL 中执行 UPDATE 查询,仅在满足特定条件时才更新字段值?像这样:
Is it possible to do an UPDATE query in MySQL which updates field value only if certain condition is met? Something like this:
UPDATE test
SET
CASE
WHEN true
THEN field = 1
END
WHERE id = 123
换句话说:
UPDATE test
SET
something = 1, /*field that always gets updated*/
CASE
WHEN true
THEN field = 1 /*field that should only get updated when condition is met*/
END
WHERE id = 123
这样做的正确方法是什么?
What is the proper way to do this?
推荐答案
是的!
这里还有一个例子:
UPDATE prices
SET final_price= CASE
WHEN currency=1 THEN 0.81*final_price
ELSE final_price
END
这是因为 MySQL 不更新行,如果没有变化,如文档中所述:
This works because MySQL doesn't update the row, if there is no change, as mentioned in docs:
如果你将一列设置为它当前拥有的值,MySQL 会注意到这一点并且不更新它.
If you set a column to the value it currently has, MySQL notices this and does not update it.
这篇关于MySQL:仅在满足条件时更新字段的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:MySQL:仅在满足条件时更新字段
基础教程推荐
- ERROR 2006 (HY000): MySQL 服务器已经消失 2021-01-01
- 在 VB.NET 中更新 SQL Server DateTime 列 2021-01-01
- 如何在 SQL Server 的嵌套过程中处理事务? 2021-01-01
- 将数据从 MS SQL 迁移到 PostgreSQL? 2022-01-01
- SQL Server 2016更改对象所有者 2022-01-01
- Sql Server 字符串到日期的转换 2021-01-01
- 使用pyodbc“不安全"的Python多处理和数据库访问? 2022-01-01
- SQL Server 中单行 MERGE/upsert 的语法 2021-01-01
- 无法在 ubuntu 中启动 mysql 服务器 2021-01-01
- SQL Server:只有 GROUP BY 中的最后一个条目 2021-01-01