How many people are in each unique state in the customers table? Select the state and display the number of people in each.
SELECT state, count(state)
FROM customers
GROUP BY state;
SELECT state, count(state)
FROM customers
GROUP BY state;