I am converting ms SQL server queries into Postgres SQL for Greenplum database, Is there any equivalent function of ISDATE() in Greenplum/postgres?
I am converting ms SQL server queries into Postgres SQL for Greenplum database, Is there any equivalent function of ISDATE() in Greenplum/postgres?
To answer your question, there is no such function in postgres or greenplum.
But you can create a customized function. See it below
For more details, see Check whether string is a date Postgresql