Database/MySQL

MySQL에서 두개의 테이블 데이터 합치기

xProgrammer 2018. 3. 20. 12:35
table1 + table2 = table3
INSERT INTO table3 
SELECT * FROM tabel1
UNION
SELECT * FROM tabel2