I have the following table
category
id | desc_cat | parent_id
19 | Personal | (null)
20 | Credit Card | 19
21 | Academy | 19
22 | Home | (null)
23 | Water | 22
24 | Energy | 22
25 | Rent | 22
cashbook
id | value | category_id | date
177 | 480.55 | 20 | 2016-05-01
178 | 100.00 | 24 | 2016-05-04
179 | 580.00 | 25 | 2016-05-05
180 | 80.00 | 21 | 2016-05-09
181 | 28.00 | 23 | 2016-05-11
cashbook
null
Category-Father | Total
Personal | 560,55
Home | 708
select a.desc_category as segment, sum(b.value) as total
from category as a
inner join category as c on (a.parent_id = c.id_category and c.parent_id is not null)
inner join cashbook as b on (b.category_id = a.id_category)
INNER JOIN user as u ON b.user_id = u.id
WHERE u.id = 29
group by a.desc_category
SELECT y.desc_category as segment, sum( x.value) as total FROM (
SELECT category.id_category, category.desc_category, category.parent_id , c.value AS value
FROM category
INNER JOIN cashbook AS c ON category.id_category = c.category_id )AS x
INNER JOIN category AS y ON x.parent_id = y.id_category
INNER JOIN user AS u ON y.user_id = u.id
WHERE u.id = 3
GROUP BY y.desc_category
WHERE u.id = 3 AND MONTH(date) = 05 AND YEAR(date) = 2016
Could be a inner join o the same table and a group by using a temp table
select sum( x.value), y.desc_cat from (
select category.id, category.desc, category.parent_id , cashbook.value as value
from category
inner join category.id = cashbook.category_id ) as x
inner join category as y on x.parent_id = y.id
group by y.desc_cat