使用不同的值更新多行
我在我的 MySQL 数据库“users”中得到了这张表。它具有字段“id”和“value”。
现在,我想使用单个 SQL 查询更新此表中的很多 行,但许多行应该获得不同的值。目前,我正在使用这个:
UPDATE users
SET value = CASE id
WHEN 1 THEN 53
WHEN 2 THEN 65
WHEN 3 THEN 47
WHEN 4 THEN 53
WHEN 5 THEN 47
END
WHERE id IN (1,2,3,4,5)
这有效。但我觉得我可以做一些优化,因为我只为行分配了大约 3 或 4 个不同的值。正如您所看到的,现在这些是 47、53 和 65。有没有办法可以更新在同一查询中同时获得相同值的所有行?或者,还有其他方法可以优化这个吗?
I got this table in my MySQL database, 'users'. It has the fields 'id' and 'value'.
Now, I want to update lots of rows in this table with a single SQL query, but many rows should get a different value. Currently, I'm using this:
UPDATE users
SET value = CASE id
WHEN 1 THEN 53
WHEN 2 THEN 65
WHEN 3 THEN 47
WHEN 4 THEN 53
WHEN 5 THEN 47
END
WHERE id IN (1,2,3,4,5)
This works. But I feel I could do some optimization since there are only about 3 or 4 different values I'm assigning to the rows. As you can see, right now these are 47, 53 and 65. Is there a way I can update all rows that get the same value simultaneously within the same query? Or, is there another way I can optimize this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
不要执行
case variable when value then ...
,而是尝试执行case when condition then ...
- 像这样:Rather than doing
case variable when value then ...
, try doingcase when condition then ...
- like so:假设 id 是唯一的或主要的...
Assuming id is unique or primary...
我只需使用一些不同的 UPDATE 语句即可完成此操作。
如果您只需要在多行中每行设置 5 或 6 个值,这似乎是最简单的。或者是否有某种特定原因需要在一个查询中执行此操作?
I would just do this with a few different UPDATE statements.
This seems simplest if you only have 5 or 6 values to set on multiple rows each. Or is there some specific reason that you need to do this in one query?