Updated on 2022-06-11 GMT+08:00

UPDATE

Function

UPDATE updates data in a table. UPDATE changes the values of the specified columns in all rows that satisfy the condition. The WHERE clause clarifies conditions. The columns to be modified need be mentioned in the SET clause; columns not explicitly modified retain their previous values.

Precautions

  • You must have the UPDATE permission on a table to be updated.
  • You must have the SELECT permission on all tables involved in the expressions or conditions.
  • The distribution column of a table cannot be modified.
  • For column-store tables, the RETURNING clause is currently not supported.
  • Column-store tables do not support non-deterministic update. If you update data in one row with multiple rows of data in a column-store table, an error is reported.
  • Memory space that records update operations in column-store tables is not reclaimed. You need to clean it by executing VACUUM FULL table_name.
  • Currently, UPDATE cannot be used in column-store replication tables.
  • You are not advised to create a table that needs to be frequently updated as a replication table.
  • Column-store tables support lightweight UPDATE operations. Lightweight UPDATE operations only rewrite the updated columns to reduce space usage. Lightweight UPDATE for column-store tables is controlled by GUC parameter enable_light_colupdate.
  • Column-store lightweight UPDATE is unavailable and automatically changes to the regular UPDATE operation in the following scenarios: updating an index column, updating a primary key column, updating a partition column, updating a PCK column, and online scaling.

Syntax

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
UPDATE [ ONLY ] table_name [ * ] [ [ AS ] alias ]
SET {column_name = { expression | DEFAULT } 
    |( column_name [, ...] ) = {( { expression | DEFAULT } [, ...] ) |sub_query }}[, ...]
    [ FROM from_list] [ WHERE condition ]
    [ RETURNING {* 
                | {output_expression [ [ AS ] output_name ]} [, ...] }];

where sub_query can be:
SELECT [ ALL | DISTINCT [ ON ( expression [, ...] ) ] ]
{ * | {expression [ [ AS ] output_name ]} [, ...] }
[ FROM from_item [, ...] ]
[ WHERE condition ]
[ GROUP BY grouping_element [, ...] ]
[ HAVING condition [, ...] ]

Parameter Description

  • table_name

    Name (optionally schema-qualified) of the table to be updated.

    Value range: an existing table name

  • alias

    Specifies the alias for the target table.

    Value range: a string. It must comply with the naming convention.

  • column_name

    Renames a column.

    You can refer to this column by specifying the table name and column name of the target table. Example:

    UPDATE foo SET foo.col_name = 'GaussDB';

    You can refer to this column by specifying the target table alias and the column name. For example:

    UPDATE foo AS f SET f.col_name = 'GaussDB';

    Value range: an existing column name

  • expression

    An expression or value to assign to the column.

  • DEFAULT

    Sets the column to its default value.

    The value is NULL if no specified default value has been assigned to it.

  • sub_query

    Specifies a subquery.

    This command can be executed to update a table with information for other tables in the same database. For details about clauses in the SELECT statement, see SELECT.

  • from_list

    A list of table expressions, allowing columns from other tables to appear in the WHERE condition and the update expressions. This is similar to the list of tables that can be specified in the FROM clause of a SELECT statement.

    Note that the target table must not appear in the from_list, unless you intend a self-join (in which case it must appear with an alias in the from_list).

  • condition

    An expression that returns a value of type boolean. Only rows for which this expression returns true are updated.

  • output_expression

    An expression to be computed and returned by the UPDATE command after each row is updated.

    Value range: The expression can use any column names of the table named by table_name or table(s) listed in FROM. Write * to return all columns.

  • output_name

    A name to use for a returned column.

Examples

Create the student1 table.

1
2
3
4
5
6
CREATE TABLE student1
(
   stuno     int,
   classno   int 
) 
DISTRIBUTE BY hash(stuno);

Insert data.

1
2
3
INSERT INTO student1 VALUES(1,1);
INSERT INTO student1 VALUES(2,2);
INSERT INTO student1 VALUES(3,3);

View data.

1
SELECT * FROM student1;

Update the values of all records.

1
UPDATE student1 SET classno = classno*2;

View data.

1
SELECT * FROM student1;

Delete a table.

1
DROP TABLE student1;