在遇到數據庫設計是自增的主鍵,且須要插入自定義的主鍵Id時,這個時候若是直接Insert的話,將會發生錯誤,錯誤提示信息:數據庫
當 IDENTITY_INSERT 設置爲 OFF 時,不能爲表 'XXX' 中的標識列插入顯式值。數據庫設計
須要手動設置 IDENTITY_INSERT 爲 ON.ide
語法:spa
set identity_insert [TableName] on INSERT INTO [TableName] ('字段') VALUES('值') set identity_insert [TableName] off