SELECT category_id, SUM(price) as totalprice
FROM products
GROUP BY category_id WITH ROLLUP
Sehen Sie sich die Seite im Handbuch an
SELECT category_id, SUM(price) as totalprice
FROM products
GROUP BY category_id WITH ROLLUP
Sehen Sie sich die Seite im Handbuch an