1. 程式人生 > 資料庫 >SQL-select中使用條件判斷語句

SQL-select中使用條件判斷語句

語法:case when 條件1 then 結果1 when 條件2 then 結果2 else 結果N end


可以有多個任意條件,如果沒有預設結果,else可省略,示例:

select case when col1 > 1 then col2 else col3 end from XXXtable