Hi
I am trying to use an AND operator in a case statement but I keep on getting a error, is there an alternative way of doing this. The sample code is below
Cheers
I am trying to use an AND operator in a case statement but I keep on getting a error, is there an alternative way of doing this. The sample code is below
Code:
SUM( case QUESTION_KEY when 17 and SCORE = 9 then 1 else 0 end) AS TOTAL_SURVEY
from
FACT_NPS_ANSWER
Comment