在业务处理过程中经常会碰到将业务数据按照条件分别插入不同的数据表的问题按照传统的处理方式需要分条件执行多次检索后分别插入不同的表单这样因为执行了重复的检索造成cpu和内存的浪费从oraclei开始引入了insert all关键字支持将某张表的数据同时插入多张表单语法如下
Insert all Insert_into_clause [value_clause] subquery;
Insert conditional_insert_clause subquery;
如上所示insert_into_clause用于指定insert子句value clause用于指定值子句subquery用于指定提供数据的子查询condition_insert_clause用于指定insert条件子句
当使用all操作符执行多表插入时在每个条件子句上都要执行into子句后的子查询并且条件中使用的列必须在插入和子查询的结果集中
创建测试用表
createtable tdate(
idvarchar()
namevarchar()
birthday datedefaultsysdate
);
插入数据
insertinto tdate values(zhangsanto_date(YYYYMMDD));
insertinto tdate values(zhangsanto_date(YYYYMMDD));
insertinto tdate values(lisito_date(YYYYMMDD));
insertinto tdate values(wangwudefault);
insertinto tdate(idname) values(zhangsan);
commit;
创建接收用测试表
createtable tdate asselect * from tdate where=;
createtable tdate asselect * from tdate where=;
commit;
使用all关键字执行多表插入操作
insertall
when birthday > 月theninto tdate
when birthday < 月theninto tdate
whenname = zhangsantheninto tdate
whenname = lisitheninto tdate
select * from tdate;
在上述操作语句中如果原表tdate中存在既满足birthday > 月又满足name = zhangsan的数据那么将执行两次插入而使用first关键字就可以避免这个问题使用first关键字时如果有记录已经满足先前条件并且已经被插入到某个表单中(未必非要是同一个表)那么该行数据在后续插入中将不会被再次使用也就是说使用first关键字原表每行数据按照执行顺序只会被插入一次
insertfirst
when birthday > 月theninto tdate
when birthday < 月theninto tdate
whenname = zhangsantheninto tdate
whenname = lisitheninto tdate
select * from tdate;