好吧,我有 3 张桌子:
待定1:
tb1_id PK
tb1_name
待定2:
tb2_id PK
tb1_id FK
待定3:
tb3_id PK
tb2_id FK
我得到了这个查询:
select a.tb1_nome
,b.tb2_id
,count(c.tb2_id) as lins
from tb1 a
left join tb2 b on a.tb1_id=b.tb1_id
left join tb3 c on b.tb2_id=c.tb2_id
group by b.tb2_id order by a.tb1_id desc
但它不会返回 tb1 的所有行。