自动增长重新设置有两种方法:
1.执行将会删除所有数据,除非你不要表中的数据: truncate table Table_name
2.执行不会删除数据,不过遇到重复ID会出错:dbcc checkident ('Table_name', reseed, 0)
自动增长重新设置有两种方法:
1.执行将会删除所有数据,除非你不要表中的数据: truncate table Table_name
2.执行不会删除数据,不过遇到重复ID会出错:dbcc checkident ('Table_name', reseed, 0)