QuestionQ46

Load and leverage structured, semi-structured, and unstructured data

What is the Snowflake SQL command SHOW TABLES LIKE 'table_name%'; used for?

Explanation

Snowflake SHOW TABLES ... LIKE '<pattern>' filters table names using SQL wildcard matching. Because % matches zero or more characters after table_name, table_name% returns tables whose names start with table_name.

Learn more

Community Discussion

No comments yet. Be the first to start the discussion!