Podlicz, ile jest produktów w każdej kategorii oraz policz średnią cenę produktu w kategorii.
Schemat: OE, Tabela: Product-Information, Kolumny: category_id, product_id, list_price, Wynik: 17 rows
[spoiler title=’Rozwiązanie’ style=’default’ collapse_link=’true’]
SELECT category_id as „Category”, COUNT(product_id) as „Count”, to_char(AVG(list_price), '9999D99′) as „Avg price”
FROM product_information
GROUP BY category_id
ORDER BY category_id;
[/spoiler]