不能在sqlsever自增字段中插入值,若是做此操做就會出現以下警告。
Cannot insert explicit value for identity column in table 't' when identity_insert is set to OFF.
這個錯誤消息提示咱們,若是向 SQL Server 自增字段插入值,須要設置 identity_insert 選項爲 on。
example:
create table dbo.t
(
id int identity(1,1) not null,
name varchar(50)
)
set identity_insert t onsql
insert into t (id, name) values(1, 'sqlstudy')ide
set identity_insert t off
注意的是,自增字段插入值後要記得要及時把 identity_insert 設置爲 off。ci