日期:2014-05-18  浏览次数:20464 次

菜鸟问题求解答
数据库有一个字段 count 如果这个count值是1那么就更新为0,如果是0就更新为1 如何用一句sql搞定?

------解决方案--------------------
update tb set [count]=(case [count] when 0 then 1 when 1 then 0 end)
------解决方案--------------------
SQL code

update MyTable set [count]=case when [count]=0 then 1 when [count]=1 then 0 end