From: | Bret Fledderjohn <freelancer317(at)gmail(dot)com> |
---|---|
To: | Jude Lucien <jlucien(at)gmail(dot)com> |
Cc: | pgsql-novice(at)postgresql(dot)org |
Subject: | Re: Basic Query Question |
Date: | 2011-12-07 21:53:37 |
Message-ID: | CAKxkEFbjsdLFfHK-gkBku_9XZ-xaV=0qv7ch_QBs2ZyjgL3P7Q@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-novice |
Hi Jude,
On 7 December 2011 16:35, Jude Lucien <jlucien(at)gmail(dot)com> wrote:
> SELECT DISTINCT bike.bike_id FROM bike WHERE bike.model='Kona Dew SE
> FRR' AND booking.booking_date='2011-11-20' JOIN booking ON
> bike.bike_id=booking.bike_id;
>
> returns a syntax error at JOIN
>
JOIN is in the wrong location. Needs to be before the WHERE clause.
>
> SELECT DISTINCT bike.bike_id FROM bike LEFT JOIN booking ON
> bike.bike_id = booking.bike_id AND booking.booking_date <>
> '2011-11-20' WHERE bike.model = 'Kona Dew SE FRR';
>
You're comparing the booking_date in the JOIN and you should be doing this
in the WHERE clause since that will select only the booking.bike_id's
rented on all other dates.
>
> returns 23 results - two of those results have a booking date of
> 2011-11-20, so it should return 21 results.
>
> Cheers
>
> --
- Bret
____________________________________________
"Why should I fret in microcosmic bonds
That chafe the spirit, and the mind repress,
When through the clouds gleam beckoning beyonds
Where shining vistas mock man's littleness?"
- H.P. Lovecraft, "Phaeton" (1918)
From | Date | Subject | |
---|---|---|---|
Next Message | Ramy Abdel-Azim | 2011-12-07 21:54:04 | Re: Basic Query Question |
Previous Message | Ramy Abdel-Azim | 2011-12-07 21:45:53 | Re: Basic Query Question |