In SQL Server puoi usare TOP
per selezionare un certo numero di righe insieme a un ordine per ottenere i record corretti:
select top 5 type, count(*) Total
from yourtable
group by type
order by total desc
Vedi SQL Fiddle con demo
In SQL Server puoi usare TOP
per selezionare un certo numero di righe insieme a un ordine per ottenere i record corretti:
select top 5 type, count(*) Total
from yourtable
group by type
order by total desc
Vedi SQL Fiddle con demo