I was practicing some SQL when this hit me. I wanted to see how many times a certain commodity came up and from there get the commodity which came up the most.
Try this query
SELECT commodity,COUNT(commodity) AS count FROM orders GROUP BY commodity ORDER BY count desc LIMIT 1;