Reputation: 231
In SQL Server I can do this to add 6 months to the current date:
DateAdd(Month, 6, CURRENT_DATE)
What is the equivalent in Oracle?
Upvotes: 23
Views: 64734
Reputation: 22818
The equivalent is:
ADD_MONTHS( CURRENT_DATE, 6 )
Upvotes: 45