A Teradata DATE literal has the keyword DATE followed by a 10-character string enclosed in apostrophes(single quotes), like
DATE '2012-11-30'Or you can supply a character literal in some other form and CAST it to a DATE using an explicit FORMAT
CAST('11/30/2012' AS DATE FORMAT 'mm/dd/yyyy')
↧