Date 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 a date value in ANSI DATE format in an expression.

ANSI DATE literal is the preferred format for date constants. All date operations accept this format.

Syntax

DATE 'string'
string
A 10-character string enclosed in apostrophes in the following form:
YYYY-MM-DD
  • YYYY represents year. The valid range is 0001 through 9999, inclusive. You must specify all four digits.
  • MM represents month. The valid range is 01 through 12, inclusive. You must specify both digits.
  • DD represents day. The valid range is 01 through 31, inclusive, constrained by Gregorian calendar definitions. You must specify both digits.

Usage Notes

Date literals consist of the word DATE followed by a character string literal. This character string specifies the date value.

The year, month, and day components of the string literal must be separated by hyphens.

Spaces and new line characters are not allowed in a literal except after the keyword DATE.

Data Type

DATE

Example: Date Literals

The following example selects all classes from the Classes table that start on January 6, 1998.

SELECT *
FROM CLASSES
WHERE startdate = DATE '1998-01-06';

Related Topics

For information on DATE data types, see DATE Data Type.