Du uppmanas att köra den här koden.
SELECT category.cId,category.added,category.category,product.id,COALESCE(SUM(product.cost),0) as price
FROM category,product
WHERE category.cId=product.cId
GROUP BY category.cId;
Om du använder CodeIgniter-4 kan du enkelt skriva detta med Query Builder Class.