select a.* from 表1 a,表2 b,表3 c where a.字段1=b.字段1 and b.字段2=c.字段2
select a.*,distinct(a.需要不重复的字段名) from 表1 a,表2 b,表3 c where a.字段1=b.字段1 and b.字段2=c.字段2
select 表3.字段 from 表1 left join 表2 on 表1.字段=表2.字段 left join 表3 on 表2.字段=表3.字段