If
table 1
id name
1
2 B
table 2
id Money
1 10
1 1 5
2 20
1 10
左のリンクリストを使用して取得する方法以下の結果
1 A 40 2
1 A 45
2 B 20 select a.*, sum(money) as Money from table 1 a left join table 2 b on a.id=b.id
1 2 B 20
select a.*, sum(money) as Money from Table 1 a left join Table 2 b on a.id=b.id
1 A 45
グループごとに少なくする