Categories Database MySQL Mysql join and sum is doubling result August 23, 2016August 23, 2016 1 min read The way to get around this is to create inline views of your aggregates and join on the those results. SELECT R.title_id, R.revenue, R.cost, F.interest FROM (SELECT title_id, Sum(revenue) revenue,…