gpt4 book ai didi

模式中的 postgresql 序列 nextval

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

我在模式中有一个关于 postgresql 9.3 的序列。

我能做到:

SELECT last_value, increment_by from foo."SQ_ID";`
last_value | increment_by
------------+--------------
1 | 1 (1 fila)

但这行不通:

SELECT nextval('foo.SQ_ID');
ERROR:  no existe la relación «foo.sq_id»
LÍNEA 1: SELECT nextval('foo.SQ_ID');

怎么了?

它说不存在关系foo.sq_id,但它存在。

最佳答案

引用规则很痛苦。我想你想要:

SELECT nextval('foo."SQ_ID"');

防止 SQ_ID 的大小写折叠。

关于模式中的 postgresql 序列 nextval,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21397601/

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