Re: SQL Join - MySQL/PostgreSQL difference? - Mailing list pgsql-sql

From David Olbersen
Subject Re: SQL Join - MySQL/PostgreSQL difference?
Date
Msg-id Pine.LNX.4.31.0102051612080.22396-100000@bubbles.electricutopia.net
Whole thread Raw
In response to SQL Join - MySQL/PostgreSQL difference?  (Brice Ruth <brice@webprojkt.com>)
List pgsql-sql
On Thu, 1 Feb 2001, Brice Ruth wrote:

->SELECT
->  a.Number,
->  a.Code,
->  a.Text
->FROM
->  b,
->  a
->WHERE
->  (b.Id = a.Id) AND

These next two statements are very ambiguous. Make them explicit as you have
with "(b.Id = a.Id)" and "(b.d_Id = 'key3')"

Also, be sure that 'key3' is how what you want looks in the database

->  (VersionId = 'key1') AND
->  (Category = 'key2') AND
->  (b.d_Id = 'key3')
->ORDER BY
->  a.Number;

Also, make sure ( '\d b' ) that your columns are case-sensatively named 'Id' and
such as this does matter.

-- Dave





pgsql-sql by date:

Previous
From: Peter Eisentraut
Date:
Subject: Re: SQL Join - MySQL/PostgreSQL difference?
Next
From: Stephan Szabo
Date:
Subject: Re: how to simulate UPdate ...?