Replaced unmentioned fields by correct field (#18880)
Concerned queries are line 35 & 43
This commit is contained in:
@ -32,7 +32,7 @@ select count(*) AS studentCount from student; -- count of all records
|
||||
Aquí obtenemos un recuento de alumnos en cada campo de estudio.
|
||||
|
||||
```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;
|
||||
```
|
||||
|
||||

|
||||
@ -40,7 +40,7 @@ Aquí obtenemos un recuento de alumnos en cada campo de estudio.
|
||||
Aquí obtenemos un conteo de estudiantes con los mismos puntajes del SAT.
|
||||
|
||||
```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