gpt4 book ai didi

postgresql - 如何在将新记录插入 postgresql 表时调用序列?

转载 作者:行者123 更新时间:2023-12-03 05:53:55 26 4
gpt4 key购买 nike

如何在向表中插入新行时调用 postgresql 序列?

我想做这样的事情:

insert into biz_term(
biz_term_id,
biz_term_name,
)
values(SELECT nextval(idsequence)',
'temp'
);

我想这样做,因为当我尝试将新记录插入到 biz_term 表中时,序列 idsequence 不会被直接调用。如何调用它?

最佳答案

你差不多就明白了。您不需要其中的 SELECT:

insert into biz_term(
biz_term_id,
biz_term_name,
)
values(
nextval('idsequence'),
'temp'
);

您没有将 biz_term_id 指定为 serial(或 bigserial)来自动为您处理该问题,有什么原因吗?

关于postgresql - 如何在将新记录插入 postgresql 表时调用序列?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11864662/

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