Oracle數據庫學習心得(三)

2五、SQL分支判斷:case表達式,既能夠作等值判斷也能夠作比較判斷 (1)等值判斷 case 表達式 when 值1 then 返回值1 when 值2 then 返回值2 …… [else 默認返回值(省略默認就是返回null)] end (2)比較判斷 case when 條件表達式1 then 返回值1 when 條件表達式2 then 返回值2 …… [else 默認返回值] end
相關文章
相關標籤/搜索