Если у вас 8 названных таблиц:
a having id and data1 attributes.
b having id and data2 attributes.
c having id and data3 attributes.
d having id and data4 attributes.
e having id and data5 attributes.
f having id and data6 attributes.
g having id and data7 attributes.
h having id and data8 attributes.
Тогда, если вы хотите показать данные всех таблиц:
sql>select a.data1,b.data2,c.data3,d.data4,e.data5,f.data6,g.data7,h.data8 from a,b,c,d,e,f,g,h where a.id=b.id and b.id=c.id and c.id=d.id and d.id=e.id and e.id=f.id and f.id=g.id and g.id=h.id;