SELECT item, MAX(price), MIN(price) FROM items_ordered GROUP BY item;
SELECT item, MAX(price), MIN(price)
FROM items_ordered
GROUP BY item;