Re: Help with query

From: Josh Berkus <josh(at)agliodbs(dot)com>
To: "ExpoShare(dot)com" <exposhare(at)gmail(dot)com>, pgsql-novice(at)postgresql(dot)org
Subject: Re: Help with query
Date: 2004-08-12 04:48:50
Message-ID: 200408112148.50617.josh@agliodbs.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

Ryan,

> select c.user_id, a.user_id from athletes a, coaches c,
> coaching_relationships cr where a.athlete_id = cr.athlete_id and
> c.coach_id = cr.coach_id;

You're close:

select cuser.username as coach, auser.username as athlete
from athletes, coaches, coaching_relationships co_rel,
users cuser, users auser
where athletes.athlete_id = co_rel.athlete_id
and coaches.coach_id = co_rel.coach_id
and coaches.user_id = cuser.user_id
and athletes.user_id = auser.user_id
order by cuser.username, auser.username

And some unsolicited advice: don't abbreviate table names which are less than
10 characters. When you have to revisit these queries in 9 months, you won't
want to see all those "c" and "a" and "a1" tablename aliases. It's like
using programming variables named "x" and "y".

--
Josh Berkus
Aglio Database Solutions
San Francisco

In response to

Responses

Browse pgsql-novice by date

  From Date Subject
Next Message Rajan Bhide 2004-08-12 05:51:30 How can I get the Db Schema Info??
Previous Message mike g 2004-08-12 04:33:35 Re: New installation of 8.0 Beta1 Failed to create