使用merge比傳統的先判斷再選擇插入或更新快很多。
1)主要功能
提供有條件地更新和插入資料到資料庫表中
如果該行存在,執行乙個update操作,如果是乙個新行,執行insert操作
— 避免了分開更新
— 提高效能並易於使用
— 在資料倉儲應用中十分有用
2)merge語句的語法如下:
merge [hint] into [schema .] table [t_alias] using [schema .]
[t_alias] on ( condition )
when matched then merge_update_clause
when not matched then merge_insert_clause;
3)使用merge的注意事項:on子句的使用的字段不能夠用於update,即oracle不允許更新用於連線的列。
4)例項如下:
首先,我們建立乙個測試表(create table t_userobject as select object_id,object_name from user_objects where rownum<=100),
然後通過merge的方式來維護該錶的資料。根據object_id來匹配,能匹配上的,若object_name 不同(本例中不可能有該情況),則更新object_name;不能匹配上的,則直接新增該記錄。從而達到批量insert和update操作。
merge into t_userobject t
using (select object_id, object_name from user_objects) s
on (t.object_id = s.object_id)
when matched then
update
set t.object_name = s.object_name
where t.object_name != s.object_name
when not matched then
insert (object_id, object_name) values (s.object_id, s.object_name);
merge into test t
using (select id,xm from aaa) s
on (t.id=s.id)
when matched then
update
set t.xm=s.xm
where t.xm!=s.xm
when not matched then
insert (id,xm) values (s.id,s.xm);
commit;
oracle使用 merge 更新或插入資料
使用merge比傳統的先判斷再選擇插入或更新快很多。1 主要功能 提供有條件地更新和插入資料到資料庫表中 如果該行存在,執行乙個update操作,如果是乙個新行,執行insert操作 避免了分開更新 提高效能並易於使用 在資料倉儲應用中十分有用 2 merge語句的語法如下 merge hint i...
oracle使用merge更新或插入資料
總結下。使用merge比傳統的先判斷再選擇插入或更新快很多。oracle使用merge更新或插入資料 1 主要功能 提供有條件地更新和插入資料到資料庫表中 如果該行存在,執行乙個update操作,如果是乙個新行,執行insert操作 避免了分開更新 提高效能並易於使用 在資料倉儲應用中十分有用 2 ...
oracle更新語句merge和update
update update語句更新需要根據索引或者資料列遍歷所有行 語句舉例 update table1 a set column1 select column from table2 b where a.col b.col merge merge只需要遍歷一次表,可以更新可以插入 語句舉例 mer...