each table has a year and seq which are related
2002, 102
2002 , 103
2001, 001
2001,002
for example.
I've tried select * from t1, t2, t3 where t1.year = t2.year
and t1.seq = t2.seq
and t2.year = t3.year
and t2.seq = t3.seq"
but that doesn't work....well it doesn't give an error, but it times out. and if add the ORDER BY statement at the end, then it gives me the Error 28 (ran out of space or something like that?)