Hey guys,
Two part question here. I have this query:
I get a syntax error when trying to run it. The bottom half of the UNION works so the problem is on the "PRO.RECIP_RETIR_DT2 IS NULL". I can't see the problem.
Secondly, I am trying to write a query that will do the following:
1. Pull users who have a retir_dt in the date range.
2. Do not pull a user who has a retir_dt in the date range, but also has a retir_dt2 value.
3. Pull users who have a retir_dt2 in the same date range.
Would my UNION query work for this?
Two part question here. I have this query:
Code:
SELECT DISTINCT PR01.AGTY_ID_NM, PR0.PAYEE_NM, PR0.RECIP_SSN_NBR,
PR0.RECIP_RETIR_DT, PR02.ANTY_PYMT_TOT_AMT,
PR0.BENEF_STAT_CD
FROM DSNP.PR01_T_RECIP_SYS PR0,
DSNP.PR01_T_EMPR PR01,
DSNP.PR01_T_ANTY_PYMT PR02
WHERE PR0.AGTY_ID_CD=PR01.AGTY_ID_CD
AND PR0.RECIP_SSN_NBR=PR02.RECIP_SSN_NBR
AND PR02.ANTY_PYMT_DT = RECIP_PAYROLL_DT
AND PR0.BENEF_SEQ_NBR=PR02.BENEF_SEQ_NBR
AND PR0.AGTY_SYS_CD = 'APERS'
AND PR0.RECIP_TYPE_CD = '10'
AND PR0.RECIP_RETIR_DT BETWEEN '2008-07-01' AND '2009-06-01'
AND PRO.RECIP_RETIR_DT2 IS NULL
UNION
SELECT DISTINCT PR01.AGTY_ID_NM, PR0.PAYEE_NM, PR0.RECIP_SSN_NBR,
PR0.RECIP_RETIR_DT, PR02.ANTY_PYMT_TOT_AMT,
PR0.BENEF_STAT_CD
FROM DSNP.PR01_T_RECIP_SYS PR0,
DSNP.PR01_T_EMPR PR01,
DSNP.PR01_T_ANTY_PYMT PR02
WHERE PR0.AGTY_ID_CD=PR01.AGTY_ID_CD
AND PR0.RECIP_SSN_NBR=PR02.RECIP_SSN_NBR
AND PR02.ANTY_PYMT_DT = RECIP_PAYROLL_DT
AND PR0.BENEF_SEQ_NBR=PR02.BENEF_SEQ_NBR
AND PR0.AGTY_SYS_CD = 'APERS'
AND PR0.RECIP_TYPE_CD = '10'
AND PR0.RECIP_RETIR_DT2 BETWEEN '2008-07-01' AND '2009-06-01'
I get a syntax error when trying to run it. The bottom half of the UNION works so the problem is on the "PRO.RECIP_RETIR_DT2 IS NULL". I can't see the problem.
Secondly, I am trying to write a query that will do the following:
1. Pull users who have a retir_dt in the date range.
2. Do not pull a user who has a retir_dt in the date range, but also has a retir_dt2 value.
3. Pull users who have a retir_dt2 in the same date range.
Would my UNION query work for this?