SQL Server では TOP
を使用できます 適切なレコードを取得するために、order by とともに特定の数の行を選択するには:
select top 5 type, count(*) Total
from yourtable
group by type
order by total desc
SQL Fiddle with Demo を参照してください。
SQL Server では TOP
を使用できます 適切なレコードを取得するために、order by とともに特定の数の行を選択するには:
select top 5 type, count(*) Total
from yourtable
group by type
order by total desc
SQL Fiddle with Demo を参照してください。