数据库重置ID的二种方法
2012-05-23 16:04 zck98530 阅读(460) 评论(0) 编辑 收藏 举报方法1: truncate table 你的表名 --这样不但将数据删除,而且可以重新置位identity属性的字段。
方法2: delete from 你的表名 dbcc checkident(你的表名,reseed,0) --重新定位identity属性字段,让其值从1开始。
方法1: truncate table 你的表名 --这样不但将数据删除,而且可以重新置位identity属性的字段。
方法2: delete from 你的表名 dbcc checkident(你的表名,reseed,0) --重新定位identity属性字段,让其值从1开始。