+-----+-----------+-------+
| SId | FirstName | Score |
+-----+-----------+-------+
| 1 | Kate | 100 |
| 2 | Misha | 0 |
| 3 | Nick | NULL |
| 4 | Larisa | 200 |
| 5 | Misha | 150 |
| 6 | Larisa | 50 |
| 7 | Misha | 50 |
| 8 | Kate | 100 |
+-----+-----------+-------+
What is the result of the following query:
SELECT MAX(SUM(Score))
FROM Students
GROUP BY FirstName;
Login in to like
Login in to comment