Re: Expression to construct a anonymous record with named columns?

Поиск
Список
Период
Сортировка
От Alban Hertroys
Тема Re: Expression to construct a anonymous record with named columns?
Дата
Msg-id CAF-3MvP4UVd+du334G=qnQQ_1d6eQLeRaswPvg5MX-BDqm0+Dg@mail.gmail.com
обсуждение исходный текст
Ответ на Re: Expression to construct a anonymous record with named columns?  (Merlin Moncure <mmoncure@gmail.com>)
Список pgsql-general
> select * from (values (1, 2, 3)) x (a, b, c);
> select x.* from (values (1, 2, 3)) x (a, b, c);

And more fun with values:
select a, b, c from (values (1, 2, 3), (4, 5, 6), (7, 8, 9)) x (a, b, c);

--
If you can't see the forest for the trees,
Cut the trees and you'll see there is no forest.


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

Предыдущее
От: "Anibal David Acosta"
Дата:
Сообщение: Re: [ADMIN] Windows Services and Postgresql 9.1.3
Следующее
От: Miroslav Šulc
Дата:
Сообщение: Another PostgreSQL Diff Tool 2.4 released!