ESQL DATE data type

The DATE data type holds a Gregorian calendar date (year, month, and day). The format of a DATE literal is the word DATE followed by a space, followed by a date in single quotation marks in the form 'yyyy-mm-dd'. For example:
DECLARE MyDate DATE;
SET MyDate = DATE '2000-02-29';
Do not omit leading zeroes from the year, month, and day.
Related concepts
Message flows
ESQL data types
Mappings
Related tasks
Developing message flow applications
Developing ESQL
Related reference
Built-in nodes
ESQL TIME data type
ESQL GMTTIME data type
ESQL TIMESTAMP data type
ESQL GMTTIMESTAMP data type
ESQL INTERVAL data type