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