Sqlserver
 sql >> Database >  >> RDS >> Sqlserver

Come posso inserire l'identità manualmente?

Nella sua forma più semplice, devi consentire temporaneamente l'inserimento di valori di identità

SET IDENTITY_INSERT masterTbl ON
INSERT INTO masterTbl (id, name) VALUES (1, 'MNO')
SET IDENTITY_INSERT masterTbl OFF