Sehen Sie sich dies an .
Ändern Sie Ihre Abfrage in:
SET @rank=0;
SELECT @rank:[email protected]+1 AS rank, itemID, COUNT(*) as ordercount
FROM orders
GROUP BY itemID
ORDER BY ordercount DESC;
SELECT @rank;
Die letzte Auswahl ist Ihre Zählung.