Re: SELECT does not find table created by itself

Поиск
Список
Период
Сортировка
От Albe Laurenz
Тема Re: SELECT does not find table created by itself
Дата
Msg-id D960CB61B694CF459DCFB4B0128514C203938104@exadv11.host.magwien.gv.at
обсуждение исходный текст
Ответ на Re: SELECT does not find table created by itself  (Magnus Hagander <magnus@hagander.net>)
Список pgsql-general
Magnus Hagander wrote:
> > select * FROM (select 1 as a) t2 left join t2 t3 ON TRUE
> > causes error
> > ERROR:  relation "t2" does not exist

> Not entirely sure if this is what you're looking for, but I think a
> CTE can solve your problem:
> WITH t2 AS (SELECT 1 AS a)
> SELECT * FROM t2 LEFT JOIN t3 ON TRUE

Shouldn't that be:
WITH t2 AS (SELECT 1 AS a)
SELECT * FROM t2 LEFT JOIN t2 t3 ON TRUE

Yours,
Laurenz Albe

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

Предыдущее
От: "Daniel Verite"
Дата:
Сообщение: Re: set-level update fails with unique constraint violation
Следующее
От: "Greg Sabino Mullane"
Дата:
Сообщение: Re: Migration of db