Which SQL command can list the contents of a named stage named my_table?
my_table
Snowflake’s LIST command references a named internal or external stage with @<stage_name>. The % prefix denotes a table stage, while @~ denotes the current user’s stage.
LIST
@<stage_name>
%
@~
Community Discussion