Re: LEFT OUTER JOINS

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: LEFT OUTER JOINS
Дата
Msg-id 1918.967733408@sss.pgh.pa.us
обсуждение исходный текст
Ответ на LEFT OUTER JOINS  (Hoosain Madhi <MADHIH@vodacom.co.za>)
Список pgsql-general
Hoosain Madhi <MADHIH@vodacom.co.za> writes:
> The fact that I request
> c.c7link in the first part of the query, it returns all c7links from
> tbl_c7links. Ideally I should set this to NULL and then request c.c7links in
> the second part of the query (line9). However the parser complains if I
> replace c.c7link with NULL in line 1.

As a general rule, you should provide the exact error message you are
getting when you post a question like this.  "The parser complains"
is pretty unhelpful.

I am guessing that the issue is lack of datatype information in the
first select --- UNION currently takes the first select as determining
the types of all its result columns (which is a bug IMHO, but that's
how it acts at the moment).  So try casting the NULL to the proper
datatype, eg if the column is text you want "NULL::text" or
"CAST(NULL AS text)".

            regards, tom lane

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

Предыдущее
От: Bob Parkinson
Дата:
Сообщение: Re: Error with tcp/ip networking
Следующее
От: Steve Heaven
Дата:
Сообщение: Re: Error with tcp/ip networking