210531
identity 장난치기 identity 속성을 임으로 껏다 킬 수 있다 use tempdb; create table testtbl2 (id int identity, userName nchar(3), age int, nation nchar(4) default '대한민국'); go insert into testtbl2 values('지민',25,default); set identity_insert testtbl2 on insert into testtbl2(id,[userName],[age],[nation]) values(11,'쯔위',18,'대만'); set identity_insert testtbl2 off insert into testtbl2 values('즈윙',25,default); set iden..
2021. 5. 31.