Re: [SQL] Left Join

From: Peter Eisentraut <peter_e(at)gmx(dot)net>
To: Nikolaj Lundsgaard <Nikolaj(at)kampsax(dot)dtu(dot)dk>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: [SQL] Left Join
Date: 2000-03-05 14:15:35
Message-ID: Pine.LNX.4.21.0003051451020.347-100000@localhost.localdomain
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Nikolaj Lundsgaard writes:

> How do make a left join in postgresql ?

Outer joins aren't supported yet. You can generally do something like

select a2, b2 from a, b where a1 = b1
union
select a2, NULL from a where a1 not in (select b1 from b);

which is not very extensible to more than two tables. Alternatively you
can make a function that returns the corresponding value from b2 given an
a2 value, or some default if there isn't any corresponding one.

Look into the archives for outer joins for countless specifics on this.

--
Peter Eisentraut Sernanders väg 10:115
peter_e(at)gmx(dot)net 75262 Uppsala
http://yi.org/peter-e/ Sweden

In response to

  • Left Join at 2000-03-05 10:43:45 from Nikolaj Lundsgaard

Browse pgsql-sql by date

  From Date Subject
Next Message Oleg Bartunov 2000-03-05 20:00:39 statistics using SQL
Previous Message Nikolaj Lundsgaard 2000-03-05 10:43:45 Left Join