Usage Notes - Advanced SQL Engine - Teradata Database

SQL Data Types and Literals

Product
Advanced SQL Engine
Teradata Database
Release Number
17.10
Published
July 2021
Language
English (United States)
Last Update
2021-07-27
dita:mapPath
tpf1598412463935.ditamap
dita:ditavalPath
tpf1598412463935.ditaval
dita:id
B035-1143
lifecycle
previous
Product Category
Teradata Vantageā„¢

Internal Representation of INTERVAL DAY TO HOUR

Conceptually, INTERVAL DAY TO HOUR is a record with the following fields.

Field Name Storage Format Total Length
DAY SMALLINT 4 bytes
HOUR SMALLINT

External Representation of INTERVAL DAY TO HOUR

INTERVAL DAY TO HOUR types are imported and exported in record and indicator modes as CHARACTER data using the client character set.

Type Format
CHARACTER(precision + 4) '-d(precision) hh'

An example value of INTERVAL DAY (2) TO HOUR is ' 17 11'.

Range of Values

The range of values for INTERVAL DAY TO HOUR is as follows.

Type and Precision Minimum Value Maximum Value
INTERVAL DAY(1) TO HOUR -'9 23' '9 23'
INTERVAL DAY(2) TO HOUR -'99 23' '99 23'
INTERVAL DAY(3) TO HOUR -'999 23' '999 23'
INTERVAL DAY(4) TO HOUR -'9999 23' '9999 23'
Decimal values are not allowed for Interval data types except for second intervals.

Implicit and Explicit INTERVAL DAY TO HOUR Conversion

Vantage performs implicit conversion from one Interval data type to another Interval type in some cases. You can also use CAST to explicitly convert one Interval type to another.

Conversions are possible only within the same INTERVAL family. For example, you may convert a YEAR interval to months, but not to days or hours.

For more information, see Teradata Vantageā„¢ - SQL Functions, Expressions, and Predicates, B035-1145.