Examples - Advanced SQL Engine - Teradata Database

SQL Date and Time Functions and Expressions

Product
Advanced SQL Engine
Teradata Database
Release Number
17.05
17.00
Published
June 2020
Language
English (United States)
Last Update
2021-01-24
dita:mapPath
xmd1556127764262.ditamap
dita:ditavalPath
lze1555437562152.ditaval
dita:id
B035-1211
lifecycle
previous
Product Category
Teradata Vantageā„¢

Example: Adding a Month to a Specified Date

The following query:

SELECT OADD_MONTHS (DATE '2008-02-15', 1); 

returns the result 08/03/15.

Example: Adding Two Month to a Specified Date

The following query:

SELECT OADD_MONTHS (DATE '2008-02-20', 2); 

returns the result 08/04/20.

Example: Adding a Month to a Specified Date When the Month Ends on the 29th

The following query:

SELECT OADD_MONTHS (DATE '2008-02-29', 1); 

returns the result 08/03/31.

Since 29 is the last day in February, March 31 is returned since 31 is the last day in March.