안녕하세요.예전에 select 해서 insert 하기라는 포스팅을 한 기억이 나네요 [개발/database] - [oracle]오라클 select해서 insert 하기 이번에는 select 해서 update하기 입니다.사실 말 그대로 select로 update를 하고자 하면update tableA set addr = (select addr from tableB where usr_nm='홍길동') 이런식으로 할수도 있고 update tabeA a set addr = (select addr from tableB where usr_nm = a.usr_nm) where usr_nm in ( select usr_no from tableB ) 이런식으로도 할 수 있습니다.하지만 데이터 양이 많아지면 많아 질수록 속..