mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-06-22 21:08:12 +08:00
Removed unmentioned fields from query on line 33 (#18875)
This commit is contained in:
parent
5f244a6cab
commit
1bd1bcdf05
@ -30,7 +30,7 @@ select count(*) AS studentCount from student; -- count of all records
|
||||
Here we get a count of students in each field of study.
|
||||
|
||||
```sql
|
||||
select studentID, FullName, count(*) AS studentCount from the student table with a group by programOfStudy;
|
||||
select programOfStudy, count(*) AS studentCount from the student table with a group by programOfStudy;
|
||||
```
|
||||

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