What is the purpose of using the SELECT * SQL statement in Snowflake?
SELECT *
In Snowflake, * in a SELECT list is shorthand for returning all columns of the specified object (or all referenced objects when unqualified).
*
SELECT
Community Discussion