4 lines
160 B
MySQL
4 lines
160 B
MySQL
|
/*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;
|