T
Tom
I am a DB2 DBA and cannot remember how to structure the
CASE expression in Access. For instance, I need a query
that will change the number of a month to the actual
name.
SELECT CASE MONTH
WHEN '1' THEN 'JANUARY'
WHEN '2' THEN 'FEBRUARY'
..
..
..
END AS MONTH_NAME
FROM tbl_MONTH;
Anyone know how to perform this function?
Thanks in advance...Tom.
CASE expression in Access. For instance, I need a query
that will change the number of a month to the actual
name.
SELECT CASE MONTH
WHEN '1' THEN 'JANUARY'
WHEN '2' THEN 'FEBRUARY'
..
..
..
END AS MONTH_NAME
FROM tbl_MONTH;
Anyone know how to perform this function?
Thanks in advance...Tom.