Setting Identity to on or off in SQL server

后端 未结 6 730
日久生厌
日久生厌 2021-02-12 18:26

I want to set Is Identity property of a column to off and after inserting an explicit value setting it to on again.I\'ve written this query :

SET IDENTITY_INSERT         


        
6条回答
  •  傲寒
    傲寒 (楼主)
    2021-02-12 18:53

    To insert explicit values into the identity column , do the following :

    SET IDENTITY_INSERT Tbl_Cartoons  ON
    GO
    
    -- code to insert explicit ID values
    
    SET IDENTITY_INSERT Tbl_Cartoons  OFF
    GO
    

提交回复
热议问题