Re: serie of serie

Поиск
Список
Период
Сортировка
От Achilleas Mantzios
Тема Re: serie of serie
Дата
Msg-id 0daf254f-873b-3c25-da03-e3c0d39e4893@matrix.gatewaynet.com
обсуждение исходный текст
Ответ на serie of serie  (Olivier Leprêtre <o.lepretre@gmail.com>)
Список pgsql-general


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;

1

1

2

2

2

3

3

3

1

1

1

2

2

2

3

3

3

 

Thanks for any help,

 

 


Garanti sans virus. www.avast.com

В списке pgsql-general по дате отправления:

Предыдущее
От: Rory Campbell-Lange
Дата:
Сообщение: Re: serie of serie
Следующее
От: Adrian Klaver
Дата:
Сообщение: Re: Replication issue