MySQL CASE 語句是一種流程控制功能,允許我們在查詢中構建條件,例如 SELECT 或 WHERE 子句。我們有兩種 CASE 語句語法
Syntax-1
CASE val WHEN compare_val1 THEN result1 WHEN compare_val2 THEN result2 . . . Else result END
登錄后復制
在第一個語法中,如果 val 等于 compare_val1,則 CASE 語句返回 result1。如果 val 等于 compare_val2,則 CASE 語句返回 result2,依此類推。
如果 val 與任何compare_val 都不匹配,則CASE 語句返回?ELSE 子句中指定的結果。
示例
mysql> Select CASE 100 -> WHEN 100 THEN 'It is matched' -> WHEN 200 THEN 'It is not matched' -> ELSE 'No use of this Number' -> END as 'Matching the Number'; +---------------------+ | Matching the Number | +---------------------+ | It is matched | +---------------------+ 1 row in set (0.06 sec)
登錄后復制
語法2
CASE WHEN condition_1 THEN result1 WHEN condition_2 THEN result2 . . . Else result END
登錄后復制
在第二種語法中,CASE 語句返回結果 1、結果 2 等。如果條件為真。如果所有條件均不成立,CASE 語句將返回 ELSE 子句中指定的結果。
示例
mysql> Select CASE -> WHEN (100 = 100) THEN 'It is Matched' -> WHEN (200 = 100) Then 'It is Not Matched' -> Else 'No use of Number' -> END as 'Matching the Number'; +---------------------+ | Matching the Number | +---------------------+ | It is Matched | +---------------------+ 1 row in set (0.00 sec)
登錄后復制
以上就是MYSQL控制流函數CASE是如何工作的?的詳細內容,更多請關注www.92cms.cn其它相關文章!