Re: help with generation_series in pg10

Поиск
Список
Период
Сортировка
От Alvaro Herrera
Тема Re: help with generation_series in pg10
Дата
Msg-id 20180109100125.65ws2rpygq6az4eo@alvherre.pgsql
обсуждение исходный текст
Ответ на help with generation_series in pg10  (Márcio A. Sepp <marcio@zyontecnologia.com.br>)
Ответы Re: help with generation_series in pg10  (Vincenzo Romano <vincenzo.romano@notorand.it>)
RES: help with generation_series in pg10  (Márcio A. Sepp <marcio@zyontecnologia.com.br>)
Список pgsql-general
Márcio A. Sepp wrote:

> how can i have the same in pg10 as i have had in pg 9.x? 

Move the function call to the FROM clause:

select g, (g - 1) % 5 + 1 from generate_series(1, 10) g; 

> I need it to date type to...  if possible. 

There is a generate_series() variant that can return dates (more
precisely, timestamp with time zone).  But what exactly would you like
returned?

-- 
Álvaro Herrera                https://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services


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

Предыдущее
От: Agnar Renolen
Дата:
Сообщение: Getting started with first user.
Следующее
От: Vincenzo Romano
Дата:
Сообщение: Re: help with generation_series in pg10