Du bliver bedt om at køre denne kode.
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;
Hvis du bruger CodeIgniter-4, kan du nemt skrive dette ved hjælp af Query Builder Class.