ColumnStore INSERT
The INSERT statement allows you to add data to tables.
The following statement inserts a row with all column values into the customer table:
The following statement inserts two rows with all column values into the customer table:
With INSERT ... SELECT, you can quickly insert many rows into a table from one or more other tables.
ColumnStore ignores the ON DUPLICATE KEY clause.
Non-transactional INSERT ... SELECT is directed to ColumnStores cpimport tool by default, which significantly increases performance.
Transactional INSERT ... SELECT
Example for using AUTO_INCREMENT in ColumnStore:
This page is: Copyright © 2025 MariaDB. All rights reserved.