I have a table with all U.S. zip codes. each row contains the city and state name for the zip code. I\'m trying to get a list of cities that show up in multiple states. This
Try using a select distinct
SELECT DISTINCT city, state FROM table GROUP BY city