1. 程式人生 > >Case When Else End用法詳解

Case When Else End用法詳解

更新資料

update table  
set 欄位1=case     
    when 條件1 then 值1       
    when 條件2 then 值2      
    else 值3      
    end     
where    …… 

查詢資料

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