select top 3 * from tablename order by [count] desc
union all
select * from tablename 
where id not in (select top 3 id from tablename order by [count] desc)
order by [Id] desc