merge into是一個dml語句,也需要通過rollback和commit 結束事務。
UPDATE或INSERT子句可以二選一。
10g之前必須insert into和update都要存在,不是update就是insert,只能二選一。而10g裡就是可選了。
比如下面的例子,可以只存在update或者insert
merge into oldproducts op using newproducts np on (op .product_id = np.product_id)
when matched then
update set op.product_name = np.product_name
以上例子說明有匹配的時候就更新,不匹配的情況下就不處理了。
2. UPDATE和INSERT子句可以加上WHERE子句
這也是一個功能性的改進,這個where的作用是一個過濾的條件,加入一些額外的條件,對只對滿足where條件的進行update和insert
merge into oldproducts op using (select * from newproducts) np on (op.product_id = np.product_id)
when matched then
update set op.product_name = np.product_name where np.product_name like 'LV%'
insert裡也可以加入where,比如
merge into oldproducts op using (select * from newproducts) np on (op.product_id = np.product_id)
when matched then
update set op.product_name = np.product_name where np.product_name like 'LV%'
when not matched then
insert values(np.product_id, np.product_name, np.category) where np.product_name like 'LV%'
3. 在ON條件中使用常量過濾條件來insert所有的行到目標表中,不需要連接源表和目標表
merge into oldproducts op using (select * from newproducts) np on (1=0)
when matched then
update set op.product_name = np.product_name
when not matched then
insert values(np.product_id, np.product_name, np.category)
4. UPDATE子句後面可以通過DELETE子句來去除一些不需要的行,delete只能和update配合,從而達到刪除滿足where條件的子句的紀錄
merge into oldproducts op using (select * from newproducts) np on (p.product_id = np.product_id)
when matched then
update set op.product_name = np.product_name delete where op.product_id = np.product_id where np.product_name like 'LV%'
when not matched then
insert values(np.product_id, np.product_name, np.category)
閱讀更多 老孔說編程 的文章