Case expression
Summary
Case expression not returning right resultsContent
Hi, when I put the following Case statement, I do not get the right number in the "ELSE" statement. It is far lower than what I expect. Any advise?
CASE
WHEN
"Worker"."Employee Ethnicity" = 'White' THEN 'Non-Minority'
ELSE 'Minority'
END
0