我有一个领域 visible . 我想根据 visible 当前值,然后将其更新为新值。例如如果可见==0,则更改为1如果可见==1,则更改为0
visible
balp4ylt1#
使用案例
update table set visible=case when visible=0 then 1 when visible=1 then 0 end
tp5buhyn2#
这种方法应该管用
UPDATE table SET visible = IF(visible = 0, 1, 0) ...
2条答案
按热度按时间balp4ylt1#
使用案例
tp5buhyn2#
这种方法应该管用