is your second table called UM MEMBER? If it is, I would rename in UM_MEMBER and put that in your query. It is good practice to not use spaces in table names, and column names. It just makes things easier.
you just have to put a where clause in your select statements.
SELECT [PLAN_ID], [RECVD_DT] FROM MEMBER
WHERE [RECVD_DT] = whatever_date
UNION
SELECT [PLAN_ID], [RECVD_DT] FROM UM MEMBER
WHERE [RECVD_DT] = whatever_date
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.