select a.id,名称,地址,...from a left join b on a.id=b.id left join c on c.id=b.id  .....

解决方案 »

  1.   

    select a.id,名称,地址,...from a left join b on a.id=b.id left join c on a.id=c.id ...?
      

  2.   

    你们两种方案,是不是野蛮人的比较正确呢?以A的ID为基准。
      

  3.   

    select a.名称,b.地址,...from a 
    left join b on a.id=b.id 
    left join c on c.id=b.id  
    left jion.....  
      

  4.   

    以A的ID为基准。
    ----那这个差不多了
    select a.id,名称,地址,...from a left join b on a.id=b.id left join c on a.id=c.id ...
      

  5.   

    select a.* from a left join b on a.id=b.id left join on b.id=c.id .........