Home > Mobile >  Function name in snowflake
Function name in snowflake

Time:01-07

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) ;

also read documentations here : enter image description here

  • Related