FULL JOIN with 3 or more tables - Mailing list pgsql-sql

From Michael Adler
Subject FULL JOIN with 3 or more tables
Date
Msg-id Pine.NEB.4.44.0204031533070.13855-100000@reva.sixgirls.org
Whole thread Raw
In response to Re: bytea or large object  (Timothy_maguire@hartehanks.com)
Responses Re: FULL JOIN with 3 or more tables  (Masaru Sugawara <rk73@sea.plala.or.jp>)
List pgsql-sql
I can do full joins just fine on two tables at a time:

FROM t1 FULL JOIN t2 ON (t1.id = t2.id)

Now, how would I full joint in a third table?

FROM t1 FULL JOIN t2 ON (t1.id = t2.id) FULL JOIN t3 ON t1.id = t3.id

That previous line would not join together two rows from t2 and t3.


Thanks,

Mike




pgsql-sql by date:

Previous
From: Bernd von den Brincken
Date:
Subject: Named column in a Function fails at ORDER BY (PgSQL 7.1)
Next
From: Ewald Geschwinde
Date:
Subject: Re: date manipulation