gpt4 book ai didi

sql - 如何在 SQL 中生成数字列表,因为它是一个理解列表?

转载 作者:行者123 更新时间:2023-12-04 14:29:39 26 4
gpt4 key购买 nike

就我而言,在任何地方使用 sql(sybase)。

类似于haskell的东西。 [1..100]。

我不知道如何生成一个 1 到 100 的随机简单列表。

我只能这样做:

select 1
union
select 2
union
select 3

谷歌没有提供任何样本,我怀疑这个功能不存在。

最佳答案

我发现一个简短的列表最简单的方法是这样的:

select t.*
from (select row_number() over (order by (select NULL)) as num
from Information_Schema.columns
) t
where num <= 100

列表通常至少有 100 行。也可以使用其他表。

对于大数字,类似于以下内容:
with digits as (
select 0 as dig union all select 1 union all select 2 union all select 3 union all select 4 union all
select 5 union all select 6 union all select 7 union all select 8 union all select 9
),
numbers as
select d1.dig*10+d2.dig
from digits d1 cross join
digits d2
)
. . .

关于sql - 如何在 SQL 中生成数字列表,因为它是一个理解列表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14339369/

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