gpt4 book ai didi

sql - 在单个查询中检索 CURRVAL 和 NEXTVAL

转载 作者:行者123 更新时间:2023-12-05 01:15:27 25 4
gpt4 key购买 nike

使用 SQLPlus,我生成了以下序列:

CREATE SEQUENCE pubnum_seq
START WITH 7
INCREMENT BY 2
MAXVALUE 1000;

我想要做的是编写一个查询来检索序列中的 NEXTVAL 和 CURRVAL。看起来应该很简单。我试过以下语句:

SELECT pubnum_seq.currval, pubnum_seq.nextval
FROM dual;

然而,这会为两者检索相同的值。

CURRVAL - 7
NEXTVAL - 7

如果我分别尝试语句,那么它会给出我想要的结果,但我不知道如何在一个查询中执行此操作。

最佳答案

好吧,在 Oracle 上搜索文档后,我猜我的说法毕竟是正确的。根据this docs page :

If a statement contains references to both CURRVAL and NEXTVAL, Oracle increments the sequence and returns the same value for both CURRVAL and NEXTVAL regardless of their order within the statement.

Oracle 这样做对我来说不太合理,但我相信他们的话。

关于sql - 在单个查询中检索 CURRVAL 和 NEXTVAL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24345497/

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