微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

sqlserver条件判断语句

update:

update table 
set 字段1=case    
    when 条件1 then 值1      
    when 条件2 then 值2     
    else 值3     
    end    
where    …… 

select

select 字段1,字段2,      
    case 字段3    
    when 值1 then 新值      
    when 值2 then 新值     
end as 重新命名字段3的名字
from table     
where ……     
order by ……  

select      case  when 字段1=值1 then 要得到的值     when 字段1=值2 then 要得到的值       else 要得到的值       end as 重新命名字段1的名字       字段2,字段3   from table  where……   order by …… 

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐