Hmm, you should better specify what you need...
*-- Select two biggest Items
SELECT TOP 2 *
FROM YourTable
ORDER BY Item
*-- Select duplicate Items
SELECT Item, COUNT(*)
FROM YourTable
GROUP BY Item
HAVING COUNT(*) > 1
So, some data example and result requested would help to understand.