case statement in SQL, how to return multiple variables?

后端 未结 9 2187
甜味超标
甜味超标 2020-12-05 13:40

I would like to return multiple values in my case statement, such as :

SELECT
  CASE
    WHEN  THEN 
    WHEN          


        
9条回答
  •  我在风中等你
    2020-12-05 14:25

    In a SQL CASE clause, the first successfully matched condition is applied and any subsequent matching conditions are ignored.

提交回复
热议问题