/*Write a SQL statement which selects the highest grade for each of the cities of the customers.*/ SELECT city,MAX(grade) FROM customer GROUP BY city;