INTERVAL DAY TO HOUR Literals - Teradata Vantage - Analytics Database

SQL Data Types and Literals

Deployment
VantageCloud
VantageCore
Edition
VMware
Enterprise
IntelliFlex
Product
Analytics Database
Teradata Vantage
Release Number
17.20
Published
June 2022
ft:locale
en-US
ft:lastEdition
2025-11-06
dita:mapPath
uds1628112204571.ditamap
dita:ditavalPath
qkf1628213546010.ditaval
dita:id
exs1472253032394
lifecycle
latest
Product Category
Teradata Vantageā„¢

Declares an INTERVAL DAY TO HOUR value in an expression.

Result type: INTERVAL DAY TO HOUR Data Type

ANSI Compliance

INTERVAL DAY TO HOUR 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 HOUR

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. 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 HOUR Literal

The following example adds an interval of 1 day and 12 hours to the current system timestamp.

SELECT INTERVAL '1 12' DAY TO HOUR + CURRENT_TIMESTAMP;

Result:

       ( 1 12+Current TimeStamp)
--------------------------------
1999-11-05 02:32:19.770000+00:00

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

SELECT INTERVAL '1.0 10' DAY TO HOUR;