INTERVAL HOUR Literals - Advanced SQL Engine - Teradata Database

SQL Data Types and Literals

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

Declares an INTERVAL HOUR value in an expression.

Syntax

INTERVAL [ sign ] 'string' HOUR
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 hours. Spaces and new line characters are not allowed between the apostrophes.
Only digits within the apostrophes are parsed and converted to numeric. For example, '1.05' is treated as '105'.

ANSI Compliance

INTERVAL 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.

Type

INTERVAL HOUR

For details on the INTERVAL HOUR type, see INTERVAL HOUR Data Type.

Example: INTERVAL HOUR Literal

This example subtracts an interval of 2000 hours from the current system timestamp.

SELECT CURRENT_TIMESTAMP - INTERVAL '2000' HOUR;

    (Current TimeStamp(6)- 2000)
--------------------------------
2003-01-28 09:27:08.180000+00:00