码迷,mamicode.com
首页 > 数据库 > 详细

oracle 一张表插入另外一张表 存储过程

时间:2015-11-20 12:34:51      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:

 

 

----创建存储过程
create or replace procedure inserttest as
  cursor cs is
    select id, name, cla, addr, phone, tel, x, y, shape, objectid
      from hotel_bak t2;
begin
  for c in cs loop
    BEGIN
      insert into hotel
        (id, name, cla, addr, phone, tel, x, y, shape, objectid)
      values
        ((select max(id) + 1 from hotel),
         c.name,
         c.cla,
         c.addr,
         c.phone,
         c.tel,
         c.x,
         c.y,
         c.shape,
         (select max(objectid) + 1 from hotel));
    END;
  end loop;
end inserttest;

---执行存储过程
call inserttest();

commit;

 

oracle 一张表插入另外一张表 存储过程

标签:

原文地址:http://www.cnblogs.com/tianciliangen/p/4980211.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!