首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

初学者有关问题求解答

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

菜鸟问题求解答
数据库有一个字段 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 

热点排行