QuestionQ15

Data Loading and Transformation

Which command is used to export, or unload, data from Snowflake?

  • A PUT @mystage
  • B GET @mystage
  • C COPY INTO @mystage
  • D INSERT @mystage
Explanation

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.

Learn more

Community Discussion

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