Validate a non-DateTime data type field is a really a date.
SET LANGUAGE English; -- Not necessary but can be helpful SELECT ISDATE('15/04/2008'); --Returns 0. SELECT ISDATE('04/15/2008'); --Returns 1.
Last Updated on October 26, 2015
Validate a non-DateTime data type field is a really a date.
SET LANGUAGE English; -- Not necessary but can be helpful SELECT ISDATE('15/04/2008'); --Returns 0. SELECT ISDATE('04/15/2008'); --Returns 1.