Here's a quick one I just threw together (remove the DNN_ if you aren't using an objectqualifier in your database
select vi.name, (select count(iv.ItemId) from dnn_publish_itemView iv where iv.ItemId = vi.ItemId) 'count'
from dnn_publish_vwitems vi
group by vi.itemid, vi.name
order by 'count' desc