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_orderedGROUP BY item;
SELECT item, MAX(price), MIN(price)FROM items_orderedGROUP BY item;
SELECT state, count(state)FROM customersGROUP BY state;