Automatic joins? - Mailing list pgsql-general

From Leif K-Brooks
Subject Automatic joins?
Date
Msg-id aQjOb.484$1f.501016@monger.newsread.com
Whole thread Raw
Responses Re: Automatic joins?  (Martijn van Oosterhout <kleptog@svana.org>)
Re: Automatic joins?  (Martín Marqués<martin@bugs.unl.edu.ar>)
List pgsql-general
According to the Wikipedia article on PostgreSQL
(http://en.wikipedia.org/wiki/PostgreSQL), it has a feature for
automatic joins:

"SELECT u.* FROM user u, address a WHERE a.city='New York' and
a.user_name=u.user_name

In Postgres the relationship between users and addresses can be
explicity defined. Once defined the address becomes a property of the
user, so the search above can be simplified greatly to:

SELECT * FROM user WHERE address.city='New York'"

Is the a load of nonsense, or am I doing something wrong? I did define a
foreign key, but it doesn't work.


pgsql-general by date:

Previous
From: Leif K-Brooks
Date:
Subject: Automatic joins?
Next
From: Mental
Date:
Subject: importing data