pgsql添加自增序列、设置表某个字段自增操作

添加自增序列

CREATE SEQUENCE 表名_id_seq

START WITH 1

INCREMENT BY 1

NO MINVALUE

NO MAXVALUE

CACHE 1;

设置表某个字段自增

alter table表名 alter column id set default nextval(‘表名_id_seq');

从当前最大id依次递增

select setval(‘表名_id_seq',(select max(id) from 同一个表名));

大写字符的表需要加双引号。例如:

select setval('“表名_id_seq”',(select max(id) from “表名”));

补充:PostgreSQL中设置表中某列值自增或循环

在postgresql中,设置已存在的某列(num)值自增,可以用以下方法:

//将表tb按name排序,利用row_number() over()查询序号并将该列命名为rownum,创建新表tb1并将结果保存到该表中

create table tb1 as (select *, row_number() over(order by name) as rownum from tb);

//根据两张表共同的字段name,将tb1中rownum对应值更新到tb中num中

update tb set num=(select tb1.rownum from tb1 where tb.name = tb1.name);

//判断表tb1的存在并删除表

drop table if exists tb1;

在postgresql中,循环设置已存在的某列(num)值为0-9,可以用以下方法:

//将表tb按name排序,利用row_number() over()查询序号并将该列命名为rownum,创建新表tb1并将结果保存到该表中

create table tb1 as (select *, row_number() over(order by name) as rownum from tb);

//根据两张表共同的字段name,将tb1中rownum对应值更新到tb中num中,由于为0-9循环自增,则%10

update tb set num=(select tb1.rownum from tb1 where tb.name = tb1.name) % 10;

//判断表tb1的存在并删除表

drop table if exists tb1;

其它:附录一个postgresql循环的写法(与上文无关)

do $$

declare

v_idx integer :=0;

begin

while v_idx < 10 loop

update tb set num = v_idx;

v_idx = v_idx + 1;

end loop;

end $$;

以上为个人经验,希望能给大家一个参考,也希望大家多多支持。如有错误或未考虑完全的地方,望不吝赐教。

以上是 pgsql添加自增序列、设置表某个字段自增操作 的全部内容, 来源链接: utcz.com/z/345936.html

回到顶部