Re: inner join

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: inner join
Дата
Msg-id 23426.976047662@sss.pgh.pa.us
обсуждение исходный текст
Ответ на inner join  ("Romina N. Tulisi" <romina@spcom.com.ar>)
Ответы Re: inner join
Re[2]: inner join
Список pgsql-novice
"Romina N. Tulisi" <romina@spcom.com.ar> writes:
> I've been trying to do a natural inner join with postgresql. However,
> when I try to do that I loose my connection to the database.

The "inner join" syntax support in 7.0 is really just beta-quality
code; it's got a few bugs.  I'd suggest writing the query without
using inner join syntax, ie plain old
    SELECT ... FROM a,b WHERE a.x = b.x;

JOIN syntax will work a lot better in 7.1.

            regards, tom lane

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

Предыдущее
От: Mike Castle
Дата:
Сообщение: Re: Transactions
Следующее
От: "Joel Burton"
Дата:
Сообщение: Re: inner join