프로그래머의 삶 Programmer's Life/Database-Oracle&MySQL

DB Table 다대 다 로우 업데이트

Oliver's World 2011. 8. 18. 16:59
728x90
update 수정할테이블 t
set t.tel = (select tel from 수정된테이블 where sabun = t.sabun)
where t.sabun in (select sabun from 수정된테이블)

728x90