gpt4 book ai didi

mysql - 更新if else basic

转载 作者:行者123 更新时间:2023-11-29 00:02:17 25 4
gpt4 key购买 nike

我正在尝试完成 MySQL 更新,这应该很容易,当查询运行时,如果值为 0,则它将设置为 1,如果为 1,则将设置为 0。

update agents set manual_import = 0 if manual_import =1,set manual_import = 1 if manual_import = 1

上面有那么多例子,但是哪个最简单呢?

最佳答案

一些数学可以帮助:

UPDATE agents
SET manual_import = 1 - manual_import # turn 1 to 0 and 0 to 1
WHERE manual_import IN (0, 1) # but only when the value is 0 or 1

关于mysql - 更新if else basic,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29230130/

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