select * from A left join (select * from B where name=1) C on A.id=C.id where xxxxxx;其中(select * from B where name=1) 是多表查询时一个表的查询数据
通过left join...on (左链接:返回包括左表中的所有记录和右表中联结字段相等的记录)将它与表A进行链接