UPDATE Statement | SQL Statements | Teradata Vantage - UPDATE (Upsert Form) - Analytics Database - Teradata Vantage

SQL Data Manipulation Language

Deployment
VantageCloud
VantageCore
Edition
Enterprise
IntelliFlex
VMware
Product
Analytics Database
Teradata Vantage
Release Number
17.20
Published
June 2022
Language
English (United States)
Last Update
2024-10-04
dita:mapPath
pon1628111750298.ditamap
dita:ditavalPath
qkf1628213546010.ditaval
dita:id
esx1472246586715
lifecycle
latest
Product Category
Teradata Vantageā„¢

Updates column values in a specified row and, if the row does not exist, inserts the row into the table with a specified set of initial column values. The table must have a primary index and cannot be column partitioned.

For details on the temporal form, see Teradata Vantageā„¢ - Temporal Table Support, B035-1182.

ANSI Compliance

The upsert form of UPDATE is a Teradata extension to the ANSI SQL:2011 standard.

Required Privileges

The following privilege rule applies to both the UPDATE and INSERT portions of this statement:
  • You must have both update and insert privileges on the base table, view, or column set to be updated regardless of which portion of the request is performed.
The following privilege rules applies to the UPDATE portion of this statement:
  • You must have the UPDATE privilege on the base table, view, or column set to be updated.
  • To update rows through a view, you must have the UPDATE privilege on the view.
  • Also, the immediate owner of the view (that is, the database in which the view resides) must have the UPDATE privilege on the underlying object (view or base table).
The following privilege rules apply to the INSERT portion of this statement:
  • You must have the INSERT privilege on the referenced table.
  • To insert rows into a table through a view, you must have the INSERT privilege on the view.

    Also, the immediate owner of the view (that is, the database in which the view resides) must have the INSERT privilege on the underlying object (view or base table).