INTERVAL SECOND 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 SECOND value in an expression.

Result type: INTERVAL SECOND Data Type

ANSI Compliance

INTERVAL SECOND literals are partly ANSI SQL:2011 compliant.

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

Syntax

INTERVAL [ sign ] 'string' SECOND

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 seconds, optionally followed by a decimal point and 1 to 6 digits representing fractional seconds. The decimal point is required if the fractional seconds are included. Spaces and new line characters are not allowed between the apostrophes.
For the digits representing the number of seconds, only digits are parsed and converted to numeric. For example, '1.05' is treated as '105'.

Example: INTERVAL SECOND Literals

The following example adds an interval of 0.000001 seconds to the current system time.

SELECT INTERVAL '0.000001' SECOND + CURRENT_TIME;
( 0.0+Current Time)
-------------------
     15:21:23+00.00

In the following query, the first decimal point is ignored and the result is an interval of 10.000001 seconds.

SELECT INTERVAL '1.0.000001' SECOND;