SQL command join question

Поиск
Список
Период
Сортировка
От Ehab Galal
Тема SQL command join question
Дата
Msg-id BAY24-F23D89B0EEF2CFB0C611FFA96DB0@phx.gbl
обсуждение исходный текст
Ответы Re: SQL command join question  ("Phillip Smith" <phillips@weatherbeeta.com.au>)
Re: SQL command join question  (Stephan Szabo <sszabo@megazone.bigpanda.com>)
Re: SQL command join question  (Richard Broersma Jr <rabroersma@yahoo.com>)
Re: SQL command join question  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-sql
Hi,

I have three tables t1(a, b, c, d), t2(a, b, c, k), and t3(c, e). I need to 
outer join them as shown below, but only have all tuples from t1 as output. 
But the following syntax does not allow me to do so.

SELECT t1.*
FROM (t1 outer join t2 on (t1.a=t2.a and t1.b=t2.b)) t outer join t3 on 
(t1.c=t3.c);

I'm getting the following error message:
ERROR:  invalid reference to FROM-clause entry for table "t1"
HINT:  There is an entry for table "t1", but it cannot be referenced from 
this part of the query.

I'll be grateful if someone may help me with this.

Thanks,
Ehab

_________________________________________________________________
Fixing up the home? Live Search can help 

http://imagine-windowslive.com/search/kits/default.aspx?kit=improve&locale=en-US&source=hmemailtaglinenov06&FORM=WLMTAG



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

Предыдущее
От: James Robinson
Дата:
Сообщение: Re: Subselects in CHECK clause ...
Следующее
От: "Phillip Smith"
Дата:
Сообщение: Re: SQL command join question