Is it possible to do two left joins involving three
tables in one query?

select a.id, a.amount FROM t1
LEFT JOIN t2 ON (t1.id=t2.id)

then

LEFT JOIN t3 ON (t1.id=t3.id)

Is this even possible?

Any help would be greatly appreciated.

Richard

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

Reply via email to