当前位置: 代码迷 >> Sql Server >> 删除表数据的有关问题
  详细解决方案

删除表数据的有关问题

热度:5   发布时间:2016-04-27 17:27:23.0
删除表数据的问题?
如题:表数据全部清除后,怎么让ID重新从1开始自动升序?

------解决方案--------------------
alter table t
drop column id

alter table t
add id int identity(1,1)
------解决方案--------------------
重建id
  相关解决方案