📄️ COPY INTO <location>
Unload Data using COPY INTO <location>
📄️ COPY INTO <table>
The COPY INTO command in Databend allows you to load data from files located in multiple locations. This is the recommended method for loading a large amount of data into Databend.
📄️ DELETE FROM
Removes one or more rows from a table.
📄️ INSERT INTO
Writes data into a table.
📄️ REPLACE INTO
REPLACE INTO either inserts a new row into a table or updates an existing row if the row already exists with the following:
📄️ UPDATE
Modifies rows in a table with new values.