gpt4 book ai didi

mysql - 使用 SQL 生成模式

转载 作者:行者123 更新时间:2023-11-29 16:09:43 26 4
gpt4 key购买 nike

我有一个表,其中有一列包含数字 1-100。想要生成每个数字 N 重复 N 次的输出(因此 5 应出现 5 次):

1
2
2
3
3
3
4
4
4
4
and so on

最佳答案

对于8.0之前的mysql版本,

create table _set(n int);

insert into _set(n) values (1), (2), (3), (4), (5), (6); -- this goes on

select s2.* from _set as s
join _set as s2 on s.n <= s2.n;

临时表不能打开两次documented issue .

对于mysql版本8.0,试试这个,

with _set as (select 1 as n 
union all
select n+1 as n from _set
where n < 100
)
select s2.* from _set s
join _set s2 on s.n <= s2.n

关于mysql - 使用 SQL 生成模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55373758/

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