I haven't actually tried left-joining the same tables multiple times in
MySQL but I'm almost certain it should work in principle.

However, the syntax of your query is definitely wrong. At the very least,
you need the word 'FROM' to designate which tables you are joining. The
manual has examples of some joins; look at them for the exact syntax.

Rhino

----- Original Message ----- 
From: "Chris Knipe" <[EMAIL PROTECTED]>
To: <mysql@lists.mysql.com>
Sent: Tuesday, April 12, 2005 11:01 PM
Subject: LEFT JOINS same data twice?


> Hi,
>
> Is it possible to left join the same data twice?
>
> TBL ONE:
> LocationID
> Location, varchar(100)
>
> TBL TWO:
> DepartureID,
> ArrivalID,
> Time
>
> SELECT tlb1.DepartureLocation AS Departure, tbl1.DepartureLocation AS
> Destination LEFT JOIN DepartureLocation ON
tlb2.DepartureID=tlb1.LocationID
> LEFT JOIN DepartureLocation ON tbl2.ArrivalID=tbl1.LocationID ORDER BY
> tbl2.Time etc etc etc
>
>
> I get
>
> ERROR 1066 (42000): Not unique table/alias: 'tbl1'
>
>
> Thanks.
>
>
>
> --
> Chris.
>
> I love deadlines. I especially love the whooshing sound they make as they
> fly by..." - Douglas Adams, 'Hitchhiker's Guide to the Galaxy'
>
>
> -- 
> MySQL General Mailing List
> For list archives: http://lists.mysql.com/mysql
> To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]
>
>
> -- 
> No virus found in this incoming message.
> Checked by AVG Anti-Virus.
> Version: 7.0.308 / Virus Database: 266.9.7 - Release Date: 12/04/2005
>
>



-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.308 / Virus Database: 266.9.7 - Release Date: 12/04/2005


-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to