本文主要是介绍MERGE Statement in SQL Explained,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
MERGE Statement in SQL Explained
Prerequisite – MERGE Statement
As MERGE statement in SQL, as discussed before in the previous post, is the combination of three INSERT, DELETE and UPDATE statements. So if there is a Source table and a Target table that are to be merged, then with the help of MERGE statement, all the three operations (INSERT, UPDATE, DELETE) can be performed at once.
A simple example will clarify the use of MERGE Statement.
Example:
Suppose there are two tables:
- PRODUCT_LIST which is the table that contains the current details about the products available with fields P_ID, P_NAME, and P_PRICE corresponding to the ID, name and price of each product.
- UPDATED_LIST which is the table that contains the new details about the products available with fields P_ID, P_NAME, and P_PRICE corresponding to the ID, name and price of each product.
这篇关于MERGE Statement in SQL Explained的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!