我有一张收入表
title_id revenue cost
1 10 5
2 10 5
3 10 5
4 10 5
1 20 6
2 20 6
3 20 6
4 20 6
当我执行这个查询
SELECT SUM(revenue),SUM(cost)
FROM revenue
GROUP BY revenue.title_id
它产生结果
title_id revenue cost
1 30 11
2 30 11
3 30 11
4 30 11
没关系,现在我想将总和结果与另一个具有这样结构的表结合起来
title_id interest
1 10
2 10
3 10
4 10
1 20
2 20
3 20
4 20
当我用这样的聚合函数执行连接时
SELECT SUM(revenue),SUM(cost),SUM(interest)
FROM revenue
LEFT JOIN fund ON revenue.title_id = fund.title_id
GROUP BY revenue.title_id,fund.title_id
它使结果翻倍
title_id revenue cost interest
1 60 22 60
2 60 22 60
3 60 22 60
4 60 22 60
我不明白为什么它会加倍,请帮助