mysql 다중 테이블 업데이트 (join 업데이트)
2개의 테이블을 join 하여 업데이트 해보겠습니다.아래와 같은 방식으로 하시면 됩니다. update [테이블A] a, [테이블B] b set a.[컬럼명1] = b.[컬럼명1], a.[컬럼명2] = b.[컬럼명2] where a.[컬럼명3] = b.[컬럼명3]; [예제] 1234567update product a, product_group bset a.product_group_id = b.product_group_id, a.main_product_yn = b.main_product_ynwhere a.product_id = b.product_id; join을 해서 컬럼을 업데이트 해주시면 됩니다.
DB/MySql
2017. 7. 25. 16:20