从oracle9i开始引入了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子句后的子查询,并且条件中使用的列必须在插入和子查询的结果集中:
--使用all关键字执行多表插入操作
insertall
when birthday > '01-1月-08'theninto tdate1
when birthday < '01-1月-08'theninto tdate2
whenname = 'zhangsan'theninto tdate1
whenname = 'lisi'theninto tdate2
select * from tdate;
在上述操作语句中,如果原表tdate中存在既满足birthday > '01-1月-08'又满足name = 'zhangsan'的数据,那么将执行两次插入。而使用first关键字就可以避免这个问题。使用first关键字时,如果有记录已经满足先前条件,并且已经被插入到某个表单中(未必非要是同一个表),那么该行数据在后续插入中将不会被再次使用。也就是说使用first关键字,原表每行数据按照执行顺序只会被插入一次。
insertfirst
when birthday > '01-1月-08'theninto tdate1
when birthday < '01-1月-08'theninto tdate2
whenname = 'zhangsan'theninto tdate1
whenname = 'lisi'theninto tdate2
select * from tdate;
posted on 2009-09-12 09:24
Ke 阅读(895)
评论(0) 编辑 收藏 所属分类:
oracle