From the items_ordered table, select the item, maximum price, and minimum price for each specific item in the table.
SELECT item, MAX(price), MIN(price)
FROM items_ordered
GROUP BY item;
SELECT item, MAX(price), MIN(price)
FROM items_ordered
GROUP BY item;
SELECT state, count(state)
FROM customers
GROUP BY state;