可以在 Oracle 的 SELECT 中执行自动编号序列吗?

发布于 2024-10-14 07:27:27 字数 317 浏览 6 评论 0原文

我需要在 Oracle 中完成一项任务,但我不知道如何才能做到这一点。

好的,当我动态定义自动编号序列时,我需要执行 SELECT。

例如:

Select autonumber(1, 9000) as auto from some_table

结果将是

auto
------
1
2
3
4
5
6
7
8
9
10
...
9000

This would be possible to do?是否有任何 Oracle 内置函数可以帮助我做到这一点?

I need to do a task in Oracle that I don't know how can I possible do this.

Ok, I need to do a SELECT when I define a autonumber sequence on-the-fly.

For example:

Select autonumber(1, 9000) as auto from some_table

And the result would be

auto
------
1
2
3
4
5
6
7
8
9
10
...
9000

This would be possible to do? Are there any oracle build in function that will help me doing this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

残龙傲雪 2024-10-21 07:27:27

如果您想要独立于实际表中的行的数字序列,而不是对返回的行进行编号(在这种情况下请查看 rownumrow_number()),您可以做:

select level as auto
from dual
connect by level <= 9000;

If you want a sequence of numbers independent of rows in an actual table, rather than numbering the returned rows (in which case look at rownum or row_number()), you can do:

select level as auto
from dual
connect by level <= 9000;
太傻旳人生 2024-10-21 07:27:27

您可以使用 Oracle 内置的 rownum

select rownum as auto, other1, other2 from some_table

为了符合 ANSI 要求,您可以对更高版本的 Oracle 使用 ROW_NUMBER()

You can use Oracle's built in rownum

select rownum as auto, other1, other2 from some_table

For ANSI compliance, you can use ROW_NUMBER() for later versions of Oracle

茶色山野 2024-10-21 07:27:27
select 
  rownum
from 
  dba_objects, 
  dba_objects
where
  rownum <= 9000;
select 
  rownum
from 
  dba_objects, 
  dba_objects
where
  rownum <= 9000;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文