Re: example of [outer] join

From: David Stanaway <david(at)netventures(dot)com(dot)au>
To: "pgsql-sql" <pgsql-sql(at)postgresql(dot)org>
Subject: Re: example of [outer] join
Date: 2001-07-20 11:12:18
Message-ID: E15NYi7-0007iM-00@runt.in.netventures.com.au
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql


On Friday, July 20, 2001, at 08:22 PM, Gary Stainburn wrote:

My view so far is:
CREATE view member_dets as
select *,
getphone(m.mphone) as phone,
getphone(m.mfax) as fax,
getphone(m.mmobile) as mobile,
getunitno(m.mid) as munitno
from members m,
address a,
teams t,
emails e
where m.madd = a.aid and
m.memail = e.eid and
m.mteam = t.tid;

Try

CREATE VIEW member_dets AS
SELECT *,
getphone(m.mphone) AS phone,
getphone(m.mfax) AS fax,
getphone(m.mmobile) AS mobile,
getunitno(m.mid) AS munitno
FROM members m
-- every member has an address
JOIN address a ON m.madd = a.aid
-- not everyone has an email address
LEFT JOIN emails e ON m.memail = e.eid
-- every member belongs to a team
JOIN team t ON m.mteam = t.tid;

You will need postgresql 7.1 for this syntax, otherwise, refer to the
docs on how do do outer joins using unions (Pretty messy esp if you have
more than one... One very good reason to upgrade to 7.1 if you are
still using an earlier version of postgres)

==============================
David Stanaway
Personal: david(at)stanaway(dot)net
Work: david(at)netventures(dot)com(dot)au

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Raymond Chui 2001-07-20 13:36:11 When PostgreSQL compliant JDBC 2.0?
Previous Message Gary Stainburn 2001-07-20 10:22:16 example of [outer] join