MSSQL 테이블 간 데이터 복사
페이지 정보
본문
SQL 쿼리를 사용해 동일한 구조의 테이블로 간단하게 데이터를 복사하는 방법
select * into [생성될 테이블명] from [원본테이블명]
select * into [생성될 테이블명] from [원본테이블명] where'1'='2' ;
(설명: 데이터 없이 테이블 구조만 복사)
(설명: 데이터까지 복사)
단, 제약조건이나 Identity 정보는 복사되지 않는다.
참고자료
http://wiz.pe.kr/529
http://blog.naver.com/whiteyoung00?Redirect=Log&logNo=70083286673
http://blog.naver.com/first0830?Redirect=Log&logNo=60038238570
select * into [생성될 테이블명] from [원본테이블명]
select * into [생성될 테이블명] from [원본테이블명] where'1'='2' ;
(설명: 데이터 없이 테이블 구조만 복사)
select * into [생성될 테이블명] from [원본테이블명] where'1'='1 ;
(설명: 데이터까지 복사)
단, 제약조건이나 Identity 정보는 복사되지 않는다.
참고자료
http://wiz.pe.kr/529
http://blog.naver.com/whiteyoung00?Redirect=Log&logNo=70083286673
http://blog.naver.com/first0830?Redirect=Log&logNo=60038238570
댓글목록
등록된 댓글이 없습니다.