BoulderBum
Programmer
I want to do something like:
where "c" would be a conditional statement like:
Is what I want to do possible? How do I do it?
Code:
SELECT a, b, ( c ) AS d
FROM table
where "c" would be a conditional statement like:
Code:
IF x IS NOT NULL AND y IS NOT NULL
C = 'yes'
ELSE
C = 'no'
Is what I want to do possible? How do I do it?