пятница, 17 апреля 2020 г.

Найти производителей, у которых больше всего моделей в таблице Product, а также тех, у которых меньше всего моделей.

Задание: 89 (Serge I: 2012-05-04)

Вывод: maker, число моделей 

select Maker , count(distinct model) Qty from Product
group by maker
having count(distinct model) > = ALL
(select count(distinct model) from Product
group by maker)
or
count(distinct model) <= ALL
(select count(distinct model) from Product
group by maker)