728x90
다른 table data로 update 할 때
update tb1
set col1= (select col2 from tb2 where tb1.id = tb2.id)
where 1 = 1;
where절이 없으면 syntax Error 가 난다.
728x90
다른 table data로 update 할 때
update tb1
set col1= (select col2 from tb2 where tb1.id = tb2.id)
where 1 = 1;
where절이 없으면 syntax Error 가 난다.