Mysql
select 한 내용을 다른 table에 insert 하는 방법
먹세
2019. 10. 30. 17:28
필수조건,
* select 할 table과 insert 할 table의 컬럼은 일치해야 함.
방법,
1. 기본사용
insert into [table] select * from [table] where [조건];
2. 컬럼선택 사용
insert into [table] (column1, column2, column3) select column1, column2, column3 from [table] where [조건];
반응형