📄️ 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 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.