Show the number of enrollments for all sections of course number 122. (5 rows)
What will be an ideal response?
```
SELECT s.section_no, s.course_no, COUNT (*) Count
FROM section s, enrollment e
WHERE e.section_id = s.section_id
AND s.course_no = 122
GROUP BY s.course_no, s.section_no
```
Computer Science & Information Technology
You might also like to view...
Fine-grained password policies enable you to set different password policies for different portions of your Active Directory Domain Services (AD DS) domain
Indicate whether the statement is true or false
Computer Science & Information Technology
Although a user directory is treated as a file, it is flagged to indicate to the File Manager that this file is really a ____ whose records are filenames that point to files.
A. database B. volume C. subdirectory D. master file directory
Computer Science & Information Technology