Hi I'm migrating the SQL version ssrs reports to snowflake version in SQL They are using isdate() function it returns o or 1 as we know , is there any fun in snowflake to work like this??
CodePudding user response:
yes , you can use is_date()
function.
for example :
select * from table where is_date(column) ;