Removed unmentioned fields from query on line 33 (#18875)
This commit is contained in:
@ -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.
|
Here we get a count of students in each field of study.
|
||||||
|
|
||||||
```sql
|
```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;
|
||||||
```
|
```
|
||||||

|

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