serie of serie

Started by Olivier Leprêtrealmost 6 years ago3 messagesgeneral
Jump to latest
#1Olivier Leprêtre
o.lepretre@gmail.com

Hi,

I would like to generate a serie of serie and didn’t find how. With
generate_series. I can generate a serie

1

1

1

2

2

2

3

3

3

But how can I repeat this serie several times ?

1

1

1

2

2

2

3

3

3

1

1

1

2

2

2

3

3

3

1

1

1

2

2

2

3

3

3

Thanks for any help,

--
L'absence de virus dans ce courrier électronique a été vérifiée par le logiciel antivirus Avast.
https://www.avast.com/antivirus

#2Rory Campbell-Lange
rory@campbell-lange.net
In reply to: Olivier Leprêtre (#1)
Re: serie of serie

On 18/04/20, Olivier Lepr�tre (o.lepretre@gmail.com) wrote:

I would like to generate a serie of serie and didn�t find how. With
generate_series. I can generate a serie

...

But how can I repeat this serie several times ?

Something like this?

gotest=> select a, b from generate_series(1, 3) as t(a), generate_series(1, 3) as u(b);
a | b
---+---
1 | 1
1 | 2
1 | 3
2 | 1
2 | 2
2 | 3
3 | 1
3 | 2

#3Achilleas Mantzios
achill@matrix.gatewaynet.com
In reply to: Olivier Leprêtre (#1)
Re: serie of serie

On 18/4/20 10:18 π.μ., Olivier Leprêtre wrote:

Hi,

I would like to generate a serie of serie and didn’t find how.  With
generate_series. I can generate a serie

1

1

1

2

2

2

3

3

3

But how can I repeat this serie several times ?

1

1

1

2

2

2

3

3

3

1

with foo as (select floor(a) as a from
generate_series(1.33333333333333333333,4,1.0/3.0) as s(a))
select foo.a from foo, generate_series(1,10) as itera(b) order by b,a;

Show quoted text

1

1

2

2

2

3

3

3

1

1

1

2

2

2

3

3

3

Thanks for any help,

<https://www.avast.com/sig-email?utm_medium=email&amp;utm_source=link&amp;utm_campaign=sig-email&amp;utm_content=emailclient&gt;
Garanti sans virus. www.avast.com
<https://www.avast.com/sig-email?utm_medium=email&amp;utm_source=link&amp;utm_campaign=sig-email&amp;utm_content=emailclient&gt;

<#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>