Is there any in-built function or procedure in Snowflake which can return boolean value to indicate whether a table exists or not?
Like
cal IF_table_exist('table_name') or select iftableexist('table_name');
If not then I am planning to write a stored procedure which will solve the purpose. Any direction will be very helpful.
Thanks in advance