码迷,mamicode.com
首页 > 数据库 > 详细

postgresql 清空数据表数据

时间:2018-07-25 15:11:08      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:font   The   code   enc   table   tps   span   targe   http   

在 mysql中,只需要执行:

TRUNCATE table_name;

即可,数据会情况,而且自增id也会变回0;

但在 postgresql 则稍有不同,因为 postgresql 的自增id是通过序列 sequence来完成的,

所以情况数据后,还需要还原序列 sequence:

TRUNCATE bigtable, fattable RESTART IDENTITY;

官方文档:https://www.postgresql.org/docs/9.2/static/sql-truncate.html

另一种方式:(因为版本不同,可能命令不同)

truncate table table_name;
alter sequence seq_name start 1;

参考:https://stackoverflow.com/questions/13989243/sequence-does-not-reset-after-truncating-the-table

postgresql 清空数据表数据

标签:font   The   code   enc   table   tps   span   targe   http   

原文地址:https://www.cnblogs.com/tommy-huang/p/9365907.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!