I need to make "ODW.EMPLOYER_GROUPS.RERATE_MTH_NUM IN ('7,8,9')" dynamic. I am messing with code and so far no luck (see below). I am thinking I will have to use an IF statement to determine if the number is below 10, then use logic to remove the 0 using a RIGHT() command of some sort. I do not know how to do this in Oracle SQL ;(. If you can help I would really appreciate it 
Code:
ODW.EMPLOYER_GROUPS.RERATE_MTH_NUM IN (
TO_Char(ADD_MONTHS(TRUNC(SYSDATE,'MM'), -2),'MM'),
TO_Char(ADD_MONTHS(TRUNC(SYSDATE,'MM'), -1),'MM'),
TO_Char(TRUNC(SYSDATE,'MM'),'MM')
)