Declares an INTERVAL HOUR TO MINUTE value in an expression.
where:
Syntax element … |
Specifies … |
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 followed by a colon and two digits representing the number of minutes. Spaces and new line characters are not allowed between the apostrophes. Note: For the digits representing the number of hours, only digits are parsed and converted to numeric. For example, '1.05' is treated as '105'. |
INTERVAL HOUR 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.
INTERVAL HOUR TO MINUTE
For details on the INTERVAL HOUR TO MINUTE type, see “INTERVAL HOUR TO MINUTE Data Type” on page 168.
This example adds an interval of 12 hours and 37 minutes to the current system time.
SELECT INTERVAL '12:37' HOUR TO MINUTE + CURRENT_TIME;
( 12:37+Current Time)
---------------------
03:34:03+00:00
In the following query, the decimal point is ignored and the result is an interval of 10 hours and 30 minutes.
SELECT INTERVAL '1.0:30' HOUR TO MINUTE;