Show the total enrollment for course 122 in a column named TOTAL ENROLLED. (1 row)

What will be an ideal response?

```
SELECT COUNT(*) "TOTAL ENROLLED"
FROM section s, enrollment e
WHERE e.section_id = s.section_id
AND s.course_no = 122
```

Computer Science & Information Technology

You might also like to view...

The top of the screen should be two or three inches ________ eye level

Fill in the blank(s) with correct word

Computer Science & Information Technology

The term _____ refers to the use of computers in an environmentally friendly manner.

A. ?green computing B. ?bio computing C. ?scene computing D. ?organic computing

Computer Science & Information Technology