Can you JOIN a Subquery
Database
2
Posts
2
Posters
0
Views
1
Watching
-
-
Yes you can really close to what you have already. You are joining from the sub out. and that should be ok. Its called a correlated sub query.. The problem is I dont see your point in this particular example. It could be that I am just missing it. But really you could just rewrite your example SELECT tb1.namedfields, AS tb2_ID, tb2.Author AS tb2_Author, tb2.Address AS tb3_Address FROM tb1 LEFT JOIN tb2.author ON FROM tb2.id = tb1.id left join tb3 on tb2.Address = tb3.ID http://www.jasncab.com/huberblog :: Jason Huber