MSSQL Identity Insert

sso·2024년 1월 30일
0

MSSQL

목록 보기
20/28

Identity가 있는 테이블에 identity 컬럼까지 포함해서 데이터를 insert 할 때는

set identity_insert "table name" on
insert into "table name"(
		column1
	,	column2
)
select	column1
	,	column2
from	"table name"
set identity_insert "table name" off

구조로 쿼리를 작성해야함

이때 컬럼 명칭을 모두 입력해주지 않으면 오류가 발생함

profile
오늘도 하나씩 해결해 나가자!

0개의 댓글