Is there a way to create two columns in a case .. when?
I prefer the following instead of creating an exact replica of the case when statement ...
[blue]Go to work to learn. Don't go to work to earn.[/blue]
Code:
SELECT za.ZA01,
CASE
WHEN za.ZA01 = 1 THEN 'QA'
END AS qualifier,
I prefer the following instead of creating an exact replica of the case when statement ...
Code:
SELECT za.ZA01,
CASE
WHEN za.ZA01 = 1 THEN 'QA'AS qualifier, 'On hand' AS description,
END
[blue]Go to work to learn. Don't go to work to earn.[/blue]