I am basically trying to make a category list which will have an array of categories and its subcategories.
My current query is:
SELECT category.lc_name AS name,COUNT(listings.ls_cat_id) AS post_count
FROM listings_categories AS category
LEFT JOIN listings ON listings.ls_cat_id = category.lc_id
GROUP BY category.lc_id ORDER BY name ASC
It works pretty well however i want the subcategories items or posts count to be added to its parent category.
For example:
id | category | parent | Count
1 Auto 0 3
2 Auto A 1 1
3 Auto B 1 1
4 Auto C 1 1
What can i do this in mysql using only one query?
The Table Structure
listings - ls_id,ls_cat_id,ls_title
listings_categories - lc_id,lc_parent,lc_name