UPDATE
Applies to: ❌ Data Cloud SQL ✅ Tableau Hyper API
Update rows in a table.
UPDATE changes the values of the specified columns in all rows that
satisfy the condition. Only the columns to be modified need be mentioned
in the SET clause; columns not explicitly modified retain their
previous values.
There are two ways to modify a table using information contained in
other tables in the database: using sub-selects, or specifying
additional tables in the FROM clause. Which technique is more
appropriate depends on the specific circumstances.
The ROW keyword is optional and does not add any semantics in this
case. It is required according to the SQL standard, and for
compatibility with the standard, we recommend using the ROW
keyword.
The optional RETURNING clause causes UPDATE to compute and return
value(s) based on each row actually updated. Any expression using the
table's columns, and/or columns of other tables mentioned in FROM,
can be computed. The new (post-update) values of the table's columns
are used. The syntax of the RETURNING list is identical to that of the
output list of SELECT.
<with_query>The
WITHclause allows you to specify one or more subqueries that can be referenced by name in theUPDATEquery. See SELECT for details.<table_name>The name (optionally schema-qualified) of the table to update.
<alias>A substitute name for the target table. When an alias is provided, it completely hides the actual name of the table. For example, given
UPDATE foo AS f, the remainder of theUPDATEstatement must refer to this table asfnotfoo.<column_name>The name of a column in the table named by
<table_name>. Do not include the table's name in the specification of a target column — for example,UPDATE table_name SET table_name.col = 1is invalid.<expression>An expression to assign to the column. The expression can use the old values of this and other columns in the table.
DEFAULTSet the column to its default value (which will be NULL if no specific default expression has been assigned to it).
<sub_select>A
SELECTsub-query that produces as many output columns as are listed in the parenthesized column list preceding it. The sub-query must yield no more than one row when executed. If it yields one row, its column values are assigned to the target columns; if it yields no rows, NULL values are assigned to the target columns. The sub-query can refer to old values of the current row of the table being updated.<from_list>A list of table expressions, allowing columns from other tables to appear in the
WHEREcondition and the update expressions. This is similar to the list of tables that can be specified in the FROM clause of aSELECTstatement. 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 returnstruewill be updated.<output_expression>An expression to be computed and returned by the
UPDATEcommand after each row is updated. The expression can use any column names of the table named by<table_name>or table(s) listed inFROM. Write*to return all columns.<output_name>A name to use for a returned column.
If the UPDATE command contains a RETURNING clause, the result will
be similar to that of a SELECT statement containing the columns and
values defined in the RETURNING list, computed over the row(s) updated
by the command.
When a FROM clause is present, what essentially happens is that the
target table is joined to the tables mentioned in the <from_list>, and
each output row of the join represents an update operation for the
target table. When using FROM you should ensure that the join produces
at most one output row for each row to be modified. In other words, a
target row shouldn't join to more than one row from the other table(s).
If it does, then only one of the join rows will be used to update the
target row, but which one will be used is not readily predictable.
Change the word Drama to Dramatic in the column kind of the table
films:
Adjust temperature entries and reset precipitation to its default value in one row of the table weather:
Perform the same operation and return the updated entries:
Use the alternative column-list syntax to do the same update:
Increment the sales count of the salesperson who manages the account for
Acme Corporation, using the FROM clause syntax:
Perform the same operation, using a sub-select in the WHERE clause:
Update contact names in an accounts table to match the currently assigned salesperson:
A similar result could be accomplished with a join:
However, the second query may give unexpected results if employees.id is not a unique key, whereas the first query is guaranteed to raise an error if there are multiple id matches. Also, if there is no match for a particular accounts.sales_person entry, the first query will set the corresponding name fields to NULL, whereas the second query will not update that row at all.
Update statistics in a summary table to match the current data:
This command conforms to the SQL standard, except that the FROM and
RETURNING clauses are Hyper extensions (also available in PostgreSQL),
as is the ability to use WITH with UPDATE.
Some other database systems offer a FROM option in which the target
table is supposed to be listed again within FROM. That is not how
Hyper interprets FROM. Be careful when porting applications that use
this extension.