Re: inner join

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: "Romina N(dot) Tulisi" <romina(at)spcom(dot)com(dot)ar>
Cc: pgsql-novice(at)postgresql(dot)org
Subject: Re: inner join
Date: 2000-12-05 20:21:02
Message-ID: 23426.976047662@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

"Romina N. Tulisi" <romina(at)spcom(dot)com(dot)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

In response to

  • inner join at 2000-12-05 17:37:45 from Romina N. Tulisi

Responses

Browse pgsql-novice by date

  From Date Subject
Next Message Joel Burton 2000-12-05 20:28:12 Re: inner join
Previous Message Mike Castle 2000-12-05 18:05:54 Re: Transactions