gpt4 book ai didi

postgresql - Postgres 转储 : pg_catalog. setval

转载 作者:行者123 更新时间:2023-11-29 11:16:00 26 4
gpt4 key购买 nike

有人知道 pg_catalog.setval 的作用吗?

我刚刚转储了一个 PostgreSQL 数据库,并在其中得到了很多行。不确定它的用途。

最佳答案

您可能需要检查 fine manual :

setval(regclass, bigint) bigint Set sequence's current value

示例用法:;

# create sequence x;
CREATE SEQUENCE

# select nextval('x');
nextval
---------
1
(1 row)

# select nextval('x');
nextval
---------
2
(1 row)

# select nextval('x');
nextval
---------
3
(1 row)

# select setval('x', 10000);
setval
--------
10000
(1 row)

# select nextval('x');
nextval
---------
10001
(1 row)

# select nextval('x');
nextval
---------
10002
(1 row)

关于postgresql - Postgres 转储 : pg_catalog. setval,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1060026/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com