Reseed identity column in SQL Compact

后端 未结 1 863
渐次进展
渐次进展 2021-01-02 13:53

Is it possible to reset the identity column in a compact database? I\'m finding lots of answers regarding standard SQL Server, but no definitive answer regarding if it is po

相关标签:
1条回答
  • 2021-01-02 14:26
    ALTER TABLE [MyTable] ALTER COLUMN [Id] IDENTITY (1,1)
    
    0 讨论(0)
提交回复
热议问题