super_he的gravatar头像
super_he 2015-04-03 15:30:26

oracle一张表的两列值修改到另一张表,怎么写一个存储过程,批量循环修改啊

oracle一张表的两列值修改到另一张表,怎么写一个存储过程,批量循环修改啊

所有回答列表(4)
小小纠结伦的gravatar头像
小小纠结伦  LV17 2015年4月5日

select into where ..........

21841625的gravatar头像
21841625  LV2 2015年4月14日

比如A表,B表。

你要求吧a.f1,a.f2 的值,修改到 B.f1,b.f2中?

Insert into B(f1, f2) select f1,f2 from A where A.code = B.code 

 

815410192的gravatar头像
815410192  LV4 2015年7月31日

实时的操作,还是单次的。单次的楼上解决方法可以,实时的需要用触发器。

super_he的gravatar头像
super_he  LV17 2015年11月2日

Insert into 明显不行,只能update吧

顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友