📄️ COPY INTO <location>
Unload Data using COPY INTO <location>
📄️ COPY INTO <table>
COPY INTO allows you to load data from files located in one of the following locations:
📄️ DELETE
Removes one or more rows from a table.
📄️ INSERT
Writes data into a table.
📄️ MERGE
Performs INSERT, UPDATE, or DELETE operations on rows within a target table, all in accordance with conditions and matching criteria specified within the statement, using data from a specified source.
📄️ REPLACE
REPLACE INTO can either insert multiple new rows into a table or update existing rows if those rows already exist, using the following sources of data:
📄️ UPDATE
Modifies rows in a table with new values.