27,581
社区成员




select * from (select * from A left join B ) t1
left join
(select * from C left join D) t2
on t1.xx=t2.xx
select
*
from
(select * from A left join B on A.id=B.id ) result1
left join
(select * from C left join D on C.id=D.id) result2
on
result1.xx=result2.xx
select * from
(select * from a left join b on 条件=...) e
left join
(select * From c left join d on 条件=...) f on 条件=...
select
*
from
(select * from A left join B ) result1
left join
(select * from C left join D) result2
on
result1.xx=result2.xx