但是就一个主表 其他都是给主表进行工作的
不就是直接left join 或者join就可以了吗。。不要说5个表了。10个表也是类似这样连接呀
select * from table1 a,
table2 b,
table3 c
where 1=1
and a.id=b.id
and b.id=c.fd_id
有关联关系就用left join就好了
那就是这个格式
select a.*,b.*,c.*,d.*,e.* from a
left jion b on a.id=b.id
left jion c on a.id=c.id
left jion d on a.id=d.id
left jion e on a.id=e.id