Which command is used to export, or unload, data from Snowflake?
Snowflake unloads data from a table or query to an internal or external stage with COPY INTO <location>. COPY INTO @mystage therefore exports data to the named stage; PUT uploads files to a stage and GET downloads files from one.
COPY INTO <location>
COPY INTO @mystage
PUT
GET
Community Discussion