如何使用表中的特定max(id)更改PostgreSQL中的Sequence?

前端之家收集整理的这篇文章主要介绍了如何使用表中的特定max(id)更改PostgreSQL中的Sequence?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > How to reset postgres’ primary key sequence when it falls out of sync?                                    26个
>             Alter auto-generated sequence                                    2个
我需要正确地遵循sql脚本语法.在postgres中,你不能真正将“alter sequence”与“select max(id)”链接起来.那么以Postgresql接受它的方式编写脚本的正确方法是什么? @H_403_9@

@H_403_9@这是脚本,所以你可以知道我需要什么:

@H_403_9@

alter SEQUENCE notification_settings_seq START with (select max(id) from game_user)

解决方法

这将使用新值重新启动序列: @H_403_9@

@H_403_9@

do $$
declare maxid int;
begin
    select max(id) from game_user into maxid;
    execute 'alter SEQUENCE seq_name RESTART with '|| maxid;   
end;
$$language plpgsql
原文链接:/postgresql/821767.html

猜你在找的Postgre SQL相关文章