Show the number of enrollments for section 1 of Course number 350. Display at least section AND course numbers. (1 row)

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 = 350
AND s.section_no = 1
GROUP BY s.course_no, s.section_no
```

Computer Science & Information Technology

You might also like to view...

A Java program must have at least one of the following:

a. a comment b. a class definition c. a System.out.println(); statement d. a variable declaration

Computer Science & Information Technology

When coding most statements, you can press the ____________ key when you reach an appropriate point to continue the statement on the next line.

a. Enter b. Tab c. X d. Shift

Computer Science & Information Technology

Which safety tip is appropriate for network cabling?

A) Ensure the newly installed network cabling does not run near fluorescent lights. B) Ensure the newly installed network cabling is not installed in a ceiling conduit. C) Ensure the newly installed network cabling is not installed on vertical ladder racks. D) Ensure the newly installed network cabling is not a trip hazard.

Computer Science & Information Technology

Most documents created using the WordPad program are saved with the ____ extension.?

A. ?.rtf B. ?.wpd C. ?.doc D. ?.docx

Computer Science & Information Technology