[NOVICE] what does t(x) in select x from generate_series(1, 10) as t(x) stand for?

Поиск
Список
Период
Сортировка
От john snow
Тема [NOVICE] what does t(x) in select x from generate_series(1, 10) as t(x) stand for?
Дата
Msg-id CAE67tvV_G-Fdu=TP8r8NOvGPu6bVAL3h_DcMj2PAW_C4C3dhHw@mail.gmail.com
обсуждение исходный текст
Ответы Re: [NOVICE] what does t(x) in select x from generate_series(1, 10)as t(x) stand for?  ("David G. Johnston" <david.g.johnston@gmail.com>)
Список pgsql-novice
is 
select x from generate_series(1, 10) as t(x);
different from
select x from generate_series(1, 10) as x;

both statements seem to produce the same result in pgAdmin4 (i'm using postresql version 10)

thanks for helping!

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

Предыдущее
От: "Vianello, Daniel A"
Дата:
Сообщение: Re: [NOVICE] Using set role inside a function question
Следующее
От: "David G. Johnston"
Дата:
Сообщение: Re: [NOVICE] what does t(x) in select x from generate_series(1, 10)as t(x) stand for?