SELECT* FROMABCD_201203
But I'd like to learn how to create a macro that can help me input the month name (e.g. 201201) automatically.
Unfortunately, a single history table is not available for this data. So I have to work around it in order to capture this data every month. Any suggestions are greatly appreciated.
Yes, I'm doing this manually right now.
SELECT
*
FROM
ABCD_201201
UNION
ALL
SELECT
*
FROM
ABCD_201202
UNION
ALL
SELECT
*
FROM
ABCD_201203
But I'd like to learn how to create a macro that can help me input the month name (e.g. 201201) automatically.
Unfortunately, a single history table is not available for this data. So I have to work around it in order to capture this data every month. Any suggestions are greatly appreciated.