oracle 多表插入

1:有条件的
insert all   
  when customer_id < 1000 then   
     into small_customers   
  when customer_id >= 1000 and customer_id < 10000 then   
     into medium_customers   
  else   
     into large_customers  
  select customer_id, sum_orders from orders; 
 
2:无条件的
insert all   
     into small_customers   
     into medium_customers   
     into large_customers  
  select customer_id, sum_orders from orders; 
posted @ 2014-04-18 16:10  lifeng_study  阅读(153)  评论(0编辑  收藏  举报