I need to get a date that is 6 months from the system date in Oracle.
And I need to get it by running an open query from SQL. The function DATEADD(MONTH,-6, GETDATE())serves a purpose in SQL.
Does a function DATEADD(MONTH,-6, GETDATE())in SQL have a function equivalentin Oracle?
source
share