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.
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 [, ...] ] |
Name (optionally schema-qualified) of the table to be updated.
Value range: an existing table name
Specifies the alias for the target table.
Value range: a string. It must comply with the naming convention.
Renames a column.
You can refer to this column by specifying the table name and column name of the target table. Example:
1 | 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:
1 | UPDATE foo AS f SET f.col_name = 'GaussDB'; |
Value range: an existing column name
An expression or value to assign to the column.
Sets the column to its default value.
The value is NULL if no specified default value has been assigned to it.
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.
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).
An expression that returns a value of type boolean. Only rows for which this expression returns true are updated.
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.
A name to use for a returned column.
Update the values of all records.
1 | UPDATE reason SET r_reason_sk = r_reason_sk * 2; |
If the WHERE clause is not included, all r_reason_sk values are updated.
1 | UPDATE reason SET r_reason_sk = r_reason_sk + 100; |
Redefine r_reason_sk whose r_reason_desc is reason2 in the reason table.
1 | UPDATE reason SET r_reason_sk = 5 WHERE r_reason_desc = 'reason2'; |
Redefine r_reason_sk whose value is 2 in the reason table.
1 | UPDATE reason SET r_reason_sk = r_reason_sk + 100 WHERE r_reason_sk = 2; |
Redefine the course IDs whose r_reason_sk is greater than 2 in the reason table.
1 | UPDATE reason SET r_reason_sk = 201 WHERE r_reason_sk > 2; |
You can run an UPDATE statement to update multiple columns by specifying multiple values in the SET clause. For example:
1 | UPDATE reason SET r_reason_sk = 5, r_reason_desc = 'reason5' WHERE r_reason_id = 'fourth'; |