select a.*,b.*,c.* from 表1 a join 表2 b on a.编号 =b.编号 
join 表3 on b.编号 =c.编号  and a.编号 =c.编号 *號你可以按需求寫相應字段名

解决方案 »

  1.   

    试试这样
    select A.大,A.小,A.形状,B.入,C.出,D.价格,D.单位
    from 表1 A,表2 B,表3 C,表4 D
    where D.编号=b.编号 and D.编号=B.编号 and D.编号=C.编号
      

  2.   

    chiwei(水手) 
    用你那个 会出现equal to 操作的排序规则冲突  没办法哦
      

  3.   

    select *
    (select * from 表1 A ,表4 D where A.編號=D.編號) E,
    (select * from 表2 B,表3 C where B.編號=C.編號) F
    where E.單位=F.單位