프로그램 관련/oracle
oracle select insert 하기
SeoHW
2021. 9. 29. 13:58
반응형
insert 할 table A
select 할 table A_TEMP
insert into A
select * from A_TEMP
컬럼이 같은 테이블두개일시
모든데이터가 insert 됩니다.
조건필요할시
where절로 아래 추가하면됩니다.
반응형