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?
The equivalent is:
ADD_MONTHS( CURRENT_DATE, 6 )
Sign up using Google
Sign up using Facebook
Sign up using Stack Exchange
By posting your answer, you agree to the privacy policy and terms of service.
tagged
asked
1 year ago
viewed
8972 times
active