I want to select the ten rows from a table with the highest values. I could just do something like:
SELECT ItemName FROM Table ORDER BY DateAdded DESC LIMIT 10
But I feel like there might be a better way....using MAX() maybe? Any suggestions? Thanks.