If the tables to do not all have an identifier that join each other you are out of luck.
Try this:
select *
from t1 a
full outer join t2 b on a.id = b.id
full outer join t3 c on b.id = c.id
moone009
Junior Poster in Training
97 posts since Mar 2010
Reputation Points: 10
Solved Threads: 1