All pages
Powered by GitBook
1 of 1

Loading...

ColumnStore UPDATE

The UPDATE statement changes data stored in rows.

Syntax

Single-Table Syntax

UPDATE  table_reference 
  SET col1={expr1|DEFAULT} [,col2={expr2|DEFAULT}] ...
  [WHERE where_condition]
  [ORDER BY ...]
  [LIMIT row_count]

Multiple-Table Syntax

Only one table can be updated from the table list in table_reference. However, multiple columns can be updated.

UPDATE table_references
    SET col1={expr1|DEFAULT} [, col2={expr2|DEFAULT}] ...
    [WHERE where_condition]

This page is: Copyright © 2025 MariaDB. All rights reserved.