Remove unmentioned fields in line 39 query (#18877)

Replaced fields "studentID" and "FullName" by sat_score.
This commit is contained in:
FTarfasse
2018-10-15 22:57:58 +02:00
committed by Quincy Larson
parent 1bd1bcdf05
commit d69472db12

View File

@ -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.
```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;
```
![image-1](https://github.com/SteveChevalier/guide-images/blob/master/count04.JPG?raw=true)