SQL Server 2008 sử dụng COUNT() OVER
select *, c = count(1) over (partition by zip)
from tbl
order by c desc;
Nếu bạn không cần xem cột bổ sung, thì bạn có thể di chuyển COUNT() OVER
thành mệnh đề ORDER BY.
select JobCode, Job1, Job2, Job3, zip
from tbl
order by count(1) over (partition by zip) desc;