gpt4 book ai didi

MySQL 更新情况

转载 作者:行者123 更新时间:2023-11-30 01:11:41 25 4
gpt4 key购买 nike

如果另一列大于零,我需要更新一列。我写了这个

UPDATE `product` SET `quantity`= CASE
WHEN `price` > 0
THEN `quantity` = 1000
ELSE `quantity` = 0
END

问题是这个查询只影响了 47 行,而它应该是大约 1000 行。我做错了什么?

最佳答案

检查它应该影响多少行:

select count(1) from product where price>0 and quantity<>1000; select count(1) from product where price<>0 and quantity<>0;

关于MySQL 更新情况,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19422690/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com