Home > Database > Mysql Tutorial > sql server自增长列归零方法

sql server自增长列归零方法

WBOY
Release: 2016-06-07 16:20:37
Original
1173 people have browsed it

最近在搞一个项目,数据库里面有很多测试数据,后来用delete * 语句全部删除了,但发现自增长列(一般是主键)基数并没有归零,后经查阅资料,找到了解决办法,就是使用TRUNCATE函数,可将表中数据全部删除,并且可以把自增长列基数归零。SQL语句如下: view s

   最近在搞一个项目,数据库里面有很多测试数据,后来用delete * 语句全部删除了,但发现自增长列(一般是主键)基数并没有归零,后经查阅资料,找到了解决办法,就是使用TRUNCATE函数,可将表中数据全部删除,并且可以把自增长列基数归零。SQL语句如下:

  view sourceprint?1TRUNCATE TABLE tableName --其中tableName中所要操作的数据

  要注意,表中的数据全部删除了,上述SQL才会生效。正好我的是需要删除数据,如果遇到不能清空数据的情况,那暂时还没有找到办法,所以有时候感觉,,并不是太实用。

        :更多精彩文章请关注三联编程教程栏目。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template