SnowPro Core Recertification — Question 15
What command is used to export or unload data from Snowflake?
Answer options
- A. PUT @mystage
- B. GET @mystage
- C. COPY INTO @mystage
- D. INSERT @mystage
Correct answer: B
Explanation
The correct command for exporting or unloading data from Snowflake is 'GET @mystage', which retrieves files from a stage. The other options either upload data to a stage (PUT), copy data within Snowflake (COPY INTO), or insert data into a table (INSERT), which do not perform the unloading function.