INTERVAL DAY TO MINUTE Literals - Teradata Vantage

Teradata® VantageCloud Lake

Deployment
VantageCloud
Edition
Lake
Product
Teradata Vantage
Published
January 2023
ft:locale
en-US
ft:lastEdition
2024-12-11
dita:mapPath
phg1621910019905.ditamap
dita:ditavalPath
pny1626732985837.ditaval
dita:id
phg1621910019905

Declares an INTERVAL DAY TO MINUTE value in an expression.

Result type: INTERVAL DAY TO MINUTE Data Type

ANSI Compliance

INTERVAL DAY TO MINUTE literals are partly ANSI SQL:2011 compliant.

The ANSI definition places the optional sign within the apostrophes; the Teradata implementation places the optional sign outside the apostrophes.

Syntax

INTERVAL [ sign ] 'string' DAY TO MINUTE

Syntax Elements

sign
An optional minus sign to indicate a negative interval. The default is a positive interval.
The sign must be outside the apostrophes that enclose string.
string
One to four digits representing the number of days followed by a pad character and two digits representing the number of hours, followed by a colon and two digits representing the number of minutes. Besides the pad character, no other spaces or new line characters are allowed between the apostrophes.
For the digits representing the number of days, only digits are parsed and converted to numeric. For example, '1.05' is treated as '105'.

Examples: INTERVAL DAY TO MINUTE Literal

The following example adds a 30 day, 12 hour, and 30 minute interval to the current system timestamp.

SELECT INTERVAL '30 12:30' DAY TO MINUTE + CURRENT_TIMESTAMP;
   ( 30 12:30+Current TimeStamp)
--------------------------------
1999-12-04 03:14:26.330000+00:00

In the following query, the decimal point is ignored and the result is an interval of 10 days, 10 hours, and 30 minutes.

SELECT INTERVAL '1.0 10:30' DAY TO MINUTE;