Anda memasukkan nilai untuk OperationId
itu adalah kolom identitas.
Anda dapat mengaktifkan penyisipan identitas pada tabel seperti ini sehingga Anda dapat menentukan nilai identitas Anda sendiri.
SET IDENTITY_INSERT Table1 ON
INSERT INTO Table1
/*Note the column list is REQUIRED here, not optional*/
(OperationID,
OpDescription,
FilterID)
VALUES (20,
'Hierachy Update',
1)
SET IDENTITY_INSERT Table1 OFF