join question

Поиск
Список
Период
Сортировка
От Brian
Тема join question
Дата
Msg-id 5.1.0.14.2.20020215181810.00ac1240@mail.attbi.com
обсуждение исходный текст
Ответ на Re: SQL Question  (Francisco Reyes <lists@natserv.com>)
Ответы Re: join question  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-novice
What is the correct way to order the sequence join statements?

Device is the table driving this example join... it has foreign keys to the tables part and traveler.


SELECT *
FROM Device, Part, Traveler
Where Lot = 'LotID'

AND Part.Part_ID         = Device.Part_ID
AND Traveler.Traveler_ID = Device.Traveler_ID

-OR- do you turn around the Joins like this?

AND Device.Part_ID     = Part.Part_ID
AND Device.Traveler_ID = Traveler.Traveler_ID

thanks for the advice.
Brian


В списке pgsql-novice по дате отправления:

Предыдущее
От: Francisco Reyes
Дата:
Сообщение: Re: Upgrading to 7.2
Следующее
От: Tom Lane
Дата:
Сообщение: Re: join question