Jump to content
Wikipedia The Free Encyclopedia

Merge (SQL)

From Wikipedia, the free encyclopedia
SQL statement
This article relies excessively on references to primary sources . Please improve this article by adding secondary or tertiary sources.
Find sources:"Merge"SQLnews · newspapers · books · scholar · JSTOR
(September 2025) (Learn how and when to remove this message)

A relational database management system uses SQL MERGE (also called upsert) statements to INSERT new records or UPDATE or DELETE existing records depending on whether condition matches. It was officially introduced in the SQL:2003 standard, and expanded[citation needed ] in the SQL:2008 standard.

Usage

[edit ]
MERGEINTOtablenameUSINGtable_referenceON(condition)
WHENMATCHEDTHEN
UPDATESETcolumn1=value1[,column2=value2...]
WHENNOTMATCHEDTHEN
INSERT(column1[,column2...])VALUES(value1[,value2...]);

A right join is employed over the Target (the INTO table) and the Source (the USING table / view / sub-query)--where Target is the left table and Source is the right one. The four possible combinations yield these rules:

  • If the ON field(s) in the Source matches the ON field(s) in the Target, then UPDATE
  • If the ON field(s) in the Source does not match the ON field(s) in the Target, then INSERT
  • If the ON field(s) does not exist in the Source but does exist in the Target, then no action is performed.
  • If the ON field(s) does not exist in either the Source or Target, then no action is performed.

If multiple Source rows match a given Target row, an error is mandated by SQL:2003 standards. You cannot update a Target row multiple times with a MERGE statement

Implementations

[edit ]

Database management systems PostgreSQL,[1] Oracle Database, IBM Db2, Teradata, EXASOL, Firebird, CUBRID, H2, HSQLDB, MS SQL (Transact-SQL), MonetDB, Vectorwise, Apache Derby, and Spark SQL [2] support the standard syntax. Some also add non-standard SQL extensions.

Synonymous

[edit ]

Some database implementations adopted the term upsert (a portmanteau of update and insert) to a database statement, or combination of statements, that inserts a record to a table in a database if the record does not exist or, if the record already exists, updates the existing record. This synonym is used in PostgreSQL (v9.5+)[3] and SQLite (v3.24+).[4]

Upsert most commonly refers to non-standard SQL extensions that provide this behavior, most commonly via an expansion of the INSERT statement:

INSERT...ONDUPLICATEKEYUPDATE[5]
A MySQL INSERT extension which can be used to achieve a similar effect with the limitation that the join between target and source has to be made only on PRIMARY KEY or UNIQUE constraints, which is not required in the ANSI/ISO MERGE standard.
Also supported by CUBRID.[6]
INSERT IGNORE[7]
A MySQL INSERT extension which tells the server to ignore "duplicate key" errors and go on (existing rows will not be inserted or updated, but all new rows will be inserted).
INSERTINTO...ONCONFLICT[conflict_target]conflict_action
A PostgreSQL syntax also used by SQLite.[8] [4]

Other expansions used to reach a similar effect include:

REPLACE INTO[9]
A MySQL statement which first attempts an insert, and if that fails, deletes the row, if exists, and then inserts the new one.
Also supported by CUBRID.[10]
Also supported by SQLite under the names of REPLACE INTO and INSERT OR REPLACE INTO.[11]
UPDATEORINSERTINTOtablename(columns)VALUES(values)[MATCHING(columns)]
A Firebird extension. Does not provide the option to take different actions on insert versus update (e.g. setting a new sequence value only for new rows, not for existing ones.)

In addition:

  • Apache Phoenix supports UPSERTINTOtablename(columns) syntax in two versions: one directly followed by values (and having an optional ON DUPLICATE KEY clause),[12] the other followed by a SELECT statement.[13]
  • Spark SQL supports UPDATE SET * and INSERT OVERWRITE clauses in actions.[14]
  • Apache Impala supports UPSERT INTO ... SELECT.[15]

Extensions

[edit ]

Non-standard extensions to the standard MERGE statement include:

Firebird supports MERGE INTO though fails to throw an error when there are multiple Source data rows.

IBM Db2 extends the syntax with multiple WHEN MATCHED and WHEN NOT MATCHED clauses, distinguishing them with ... AND some-condition guards.

Microsoft SQL Server extends with supporting guards and also with supporting Left Join via WHENNOTMATCHEDBYSOURCE clauses.[16]

Other data structures

[edit ]

NoSQL

[edit ]

A similar concept is applied in some NoSQL databases.

Most key-value databases, staring from the classical Unix dbm, have a "set" or "store" command that can simply overwrite the existing value.

  • dbm's dbm_store() takes an argument store_mode that decides whether to overwrite an existing value or to keep it.
  • In Redis, the SET operation defaults to replacing the value if it exists. Additional condition options can instruct it to only replace (i.e. to only set if present), or to set only if not present (working as a default/fallback value).[17]

MongoDB is a document-oriented database, where each document is a BSON. update() normally take a query and a set of operations and applies the operations on the matching entry; an example operation is $set, which gives the simple overwriting behavior for setting a JSON path. It also has an upsert mode, which specifies that a new value should be inserted if the query finds nothing.[18]

Programming languages

[edit ]

ECMAScript 2026 formalizes an "upsert" proposal, which entails a getOrInsert(key, default) API. If the Map contains the requested key, this API simply returns the corresponding value. If the map does not contain the requested key, it would set the entry to the provided default value and return the default value.[19]

See also

[edit ]

References

[edit ]
[edit ]

AltStyle によって変換されたページ (->オリジナル) /