在oracle中,我想把select和update和并在一句中。

就是用一个语句查询已经更新的数据,它们是在同一个表中。如update ...select ... from table

第1个回答  推荐于2017-11-24
同时查询更新数据不行。

使用查询结果更新数据可以
update t1 set (col1,col2)=(select r1,r2 from xxxxxxx) where xxxx本回答被提问者采纳
第2个回答  2011-06-15
update table1 a set a.id=(select b.id from table2 b where a.col1=b.col1);
commit;
相似回答