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

Oracle中用一个表的数据更新另一个表的数据

时间:2014-08-31 18:39:11      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:数据   sp   c   oracle   bs   rom   r   rac   select   

update tbl1 a
   set (a.col1, a.col2) = (select b.col1, b.col2
                              from tbl2 b
                              where a.key = b.key)
   where a.key in(select key from tbl2)

Oracle中用一个表的数据更新另一个表的数据

标签:数据   sp   c   oracle   bs   rom   r   rac   select   

原文地址:http://www.cnblogs.com/emanlee/p/3947970.html

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