Is there some type of DateAdd function on Teradata?
All I'm trying to do is select items from a table where a usage date is within the last 6 months.
Looking for something along these lines:
SELECT ITEM1, ITEMS2, ...
FROM MYDB.MYTABLE
WHERE USAGE_DATE > DATEADD(MONTH,-6,DATE)
Thx!
All I'm trying to do is select items from a table where a usage date is within the last 6 months.
Looking for something along these lines:
SELECT ITEM1, ITEMS2, ...
FROM MYDB.MYTABLE
WHERE USAGE_DATE > DATEADD(MONTH,-6,DATE)
Thx!