Remove unmentioned fields in line 39 query (#18877)
Replaced fields "studentID" and "FullName" by sat_score.
This commit is contained in:
@ -36,7 +36,7 @@ Here we get a count of students in each field of study.
|
|||||||
|
|
||||||
Here we get a count of students with the same SAT scores.
|
Here we get a count of students with the same SAT scores.
|
||||||
```sql
|
```sql
|
||||||
select studentID, FullName, count(*) AS studentCount from the student table with a group by sat_score;
|
select sat_score, count(*) AS studentCount from the student table with a group by sat_score;
|
||||||
```
|
```
|
||||||

|

|
||||||
|
|
||||||
|
Reference in New Issue
Block a user