菜鸟问题求解答数据库有一个字段 count 如果这个count值是1那么就更新为0,如果是0就更新为1 如何用一句sql搞定?[解决办法]update tb set [count]=(case [count] when 0 then 1 when 1 then 0 end)[解决办法]
update MyTable set [count]=case when [count]=0 then 1 when [count]=1 then 0 end