Which commands support a multiple-statement request to access and update Snowflake data? (Choose two.)
Which commands support a multiple-statement request to access and update Snowflake data? (Choose two.)
The commands that support a multiple-statement request to access and update Snowflake data are CALL and PUT. CALL is used to invoke a stored procedure which can contain multiple SQL statements. PUT is used to upload files to Snowflake internal stages, which involves multiple operations to manage and access the data.
https://docs.snowflake.com/en/sql-reference/transactions#explicit-transactions
Correct
mostly BE