oracle中的update语句能用相关子查询么?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle中的update语句能用相关子查询么?相关的知识,希望对你有一定的参考价值。
例如:table1(id,name),table2(id,name) id为primiary key
update table1 a set a.name = (select b.name from table2 where a.id=b.id);
这样子查询返回的是多行,而= 只能用于单行子查询
有没有好的解决办法....
1楼的回答解决了=用于单行子查询的问题。
但是加入我要更新多行,而且更新的只是表中的部分数据,有没有什么高效的解决办法呢?
其实要按你的具体需求而定。
步骤多,但效率比较高:
1、create table 临时表 value (select a.id,a.name,b.name,... from table1 a,table2 b where a.id=b.id)
2、删除table1中的记录,不要drop
3、insert into table1 select 你需要的字段 from 临时表。 参考技术A 因为查出的值很多,不知道你要更新为哪个,要是值都一样的话,用最大值或最小值,这样出来的是一条记录
update table1 a set a.name = (select max(b.name) from table2 where a.id=b.id);
where ---你可以在后面再次限制更新的记录条件
在update语句中使用子查询
在update 中的 where 子句中使用子查询:
UPDATE mg_page_log as a SET page_num=1 WHERE id in( SELECT id from mg_page_log WHERE id < 100 GROUP BY visit_id)
会报:
You can‘t specify target table ‘a‘ for update in FROM clause 错误
所以正确的是:
UPDATE mg_page_log as a ,( SELECT id from mg_page_log WHERE id < 100 GROUP BY visit_id)as b SET page_num=1 WHERE a.id = b.id
以上是关于oracle中的update语句能用相关子查询么?的主要内容,如果未能解决你的问题,请参考以下文章