IS_DATE

Returns TRUE if the input expression can be cast to a date.

Syntax

IS_DATE(in union<>) → boolean

  • in: Input expression.

Examples

IS_DATE example
SELECT ISDATE('2021-04-22')
-- True

Last updated