oracle update语句将一个语句的查询结果作为set值怎么做?【特急】
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle update语句将一个语句的查询结果作为set值怎么做?【特急】相关的知识,希望对你有一定的参考价值。
比如update TEST set b=''
---------
select t.b1 from TEMP
把这个b的值设成temp表的b1 该怎么做?
我需要批量修改数据,不是只改几条。
给你举了个例子,id是这两个表都有的连接字段,而且对同一个id。查询select * FROM TEST,TEMP where test.id=temp.id 仅返回一条 参考技术A update TEST a set b=(select t.b1 from TEMP b where a.id=b.id);
oracle 中update 多列
update table A中的某一栏位值,使其等于table B中的某一栏位值,
table A和table B中都有多列,tabel A跟tabel B需一一对应。
oracle中update多列用逗号分隔。
如test表中有如下数据:
要修改id为3的这条数据将id改成6,name改成赵六,用如下语句:
update test set id=6,name=\'赵六\' where id=3;commit;
更改后的结果:
1.)教科书式写法
update t_table a
set f1=(select f1 from testz b where a.id=b.id),
f2=(select f2 from testz b where a.id=b.id),
f3=(select f3 from testz b where a.id=b.id)
where id=2;
2.)教科书变种
update t_table a
set (f1,f2,f3)=(select f1,f2,f3 from testz b where a.id=b.id)
where id=2;
虽然道理和方法1一样,却省了不少事
3.)另类nest table写法
update (select f1,f2,f3 from t_table where id=2)
set (f1,f2,f3)=(select f1,f2,f3 from testz b where id=2);
此方法虽然比2的代码量要多一些,但是没有表连接,如果两个表都在id列有主键,速度应该较方法1和方法2快一些.
说明:update是一个耗回滚段,耗重做日志,耗时间,耗成本的操作,尤其是大表的多列update,如有必要应比较其与重新建表的效率.
http://space.itpub.net/14130873) 参考技术B update A set name=(select name from B whre A.id=B.id)
多列的话同理,往后加就行了 参考技术C 例如 表A、B有相同的字段col1,col2:
update A t1 set (t1.col1,t1.col2)=(select t2.col1,t2.col2 from B t2 where t1.id=t2.id)
还可以给A加上条件:
update A t1 set (t1.col1,t1.col2)=(select t2.col1,t2.col2 from B t2 where t1.id=t2.id)
where A.id is not null
以上是关于oracle update语句将一个语句的查询结果作为set值怎么做?【特急】的主要内容,如果未能解决你的问题,请参考以下文章