is there an equivalant to dateadd in oracle?
627047May 21 2009 — edited May 21 2009So I have a line of code in MS SQL
HDATE >= DATEADD(DAY, - @V_NUMDAYS,GETDATE()))
im not sure how to translate that to oracle..
I am comparing HDATE to see if it is equal to or greater then today - @V_NUMDAYS (which is a whole number ) so it will compare the hdate to todays date minus 10 days....