Vous êtes invité à exécuter ce code.
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;
Si vous utilisez CodeIgniter-4, vous pouvez facilement l'écrire en utilisant Query Builder Class.