Write a SQL query that returns, for each subject, the number of students,
the lowest score, and the highest score. Order the results by subject name.
Table: `exam_scores`
| id | student | subject | score |
|---|---|---|---|
| 1 | Alice | Math | 75 |
| 2 | Bob | Math | 85 |
| 3 | Carol | Science | 60 |
| 4 | Dave | Science | 90 |
| 5 | Eve | Math | 92 |
| 6 | Frank | Science | 78 |
Expected output (columns: subject, students, lowest, highest)
Math|3|75|92
Science|3|60|90Sample tests