Chinaunix首页 | 论坛 | 博客
  • 博客访问: 332677
  • 博文数量: 53
  • 博客积分: 1037
  • 博客等级: 准尉
  • 技术积分: 1066
  • 用 户 组: 普通用户
  • 注册时间: 2012-05-13 14:09
文章分类

全部博文(53)

文章存档

2016年(1)

2015年(10)

2013年(2)

2012年(40)

分类: LINUX

2015-03-24 17:08:28

如何使用 SELECT SETVAL(...)  将 SERIAL 类型的计数器重置为某个数

比如 questions 表中的字段 id 设置为 SERIAL 类型, PostgreSQL 会自动为它创建一个序列, 使用下面的命令可以查看该序列的名字.

notes=# select pg_get_serial_sequence('questions','id');
 pg_get_serial_sequence  
-------------------------
 public.questions_id_seq

setval(sequenceName, n, true)
如果第三个参数是 true, 则设置 next value 为 n+1;
如果第三个参数是 false 则设置 next value 为 n;

notes=# SELECT SETVAL((SELECT pg_get_serial_sequence('questions', 'id')), 5, false);
 setval
--------
      5
(1 row)


Reference:


阅读(4272) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~