how to do 'deep queries'?

From: jeff sacksteder <jsacksteder(at)gmail(dot)com>
To: pgsql-sql(at)postgresql(dot)org
Subject: how to do 'deep queries'?
Date: 2005-09-27 00:34:14
Message-ID: 51c8a7be050926173448a22f8@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Is there supported syntax to do 'deep' queries? That is where A relates to B
relates to C, returning fields from each table?

This doesn't seem to work. Is there a google-able term for this sort of
query?

select
foo.aaa,
bar.bbb,
baz.ccc

from
foo,bar,baz

where
foo.bar_id = bar.id <http://bar.id>
and
bar.baz_id = baz.id <http://baz.id>

Browse pgsql-sql by date

  From Date Subject
Next Message Stewart Ben (RBAU/EQS4) * 2005-09-27 00:45:13 Re: how to do 'deep queries'?
Previous Message Peter Eisentraut 2005-09-27 00:16:04 Re: add column if doesn't exist