DateADD Oracle Function | Database Journal

DateADD Oracle Function

Apr 7, 2004
1 minute read


>>Script Language and Platform: Oracle
Returns a new datetime value based on adding an interval to the specified date.

Syntax

DATEADD ( datepart , number, date )

examples

1)Subtract 10 days from ’05/APR/2004′

  Select DateADD('dd' , -10, to_date('05/APR/2004')) from dual
  ------------
  03/26/2004

2)ADD 30 days to MAR return

  Select DateADD('dd' , 30, to_date('31-MAR-2003')) from dual
 ---------
   04/30/2003

3) Add 2 months to 29/FEB/2004

  Select DateADD('M' , 2, '29-FEB-2004') from dual;
 --------
 04/29/2004

4) Add 2 hours to ’01-JAN-2003 10:33:44′

   Select to_char(DateADD ( 'h' , 3 , to_date('01-JAN-2003 10:33:44' , 
	'dd-MON-YYYY  HH:MI:SS') ) , 
	'dd-MON-YYYY HH:MI:SS' )   From dual;
  ---------
   01-JAN-2003 01:33:44

Author: George Antony

Download Script:
dateADD.sql

Disclaimer: We hope that the information on these script pages is valuable to you. Your use of the information contained in these pages, however, is at your sole risk. All information on these pages is provided “as -is”, without any warranty, whether express or implied, of its accuracy, completeness, or fitness for a particular purpose… Disclaimer Continued

Back to Database Journal Home

Database Journal Logo

DatabaseJournal.com publishes relevant, up-to-date and pragmatic articles on the use of database hardware and management tools and serves as a forum for professional knowledge about proprietary, open source and cloud-based databases--foundational technology for all IT systems. We publish insightful articles about new products, best practices and trends; readers help each other out on various database questions and problems. Database management systems (DBMS) and database security processes are also key areas of focus at DatabaseJournal.com.

Property of TechnologyAdvice. © 2026 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.