List all classes (course_no, section_no) taught by Fernand Hanks (Use a correlated subquery) (9 rows).

What will be an ideal response?


```
SELECT last_name||', '||first_name
FROM student
WHERE student_id IN (SELECT student_id
FROM enrollment
WHERE section_id IN (SELECT section_id
FROM enrollment
GROUP BY section_id
HAVING COUNT(*) < 5))
```

Computer Science & Information Technology

You might also like to view...

How would you mount an ISO image so you could copy files from it without burning it to a CD?

$ mount -t -o loop image.iso /mnt/image

Computer Science & Information Technology

Which of the following describes an alternate site where only the infrastructure (building, power, cooling) has been established?

A. Mirror site B. Warm site C. Hot site D. Cold site

Computer Science & Information Technology

Which of the following technicians uses software todivide one physical server into a number of virtual machines, with each virtual machine capable of processinga set of data for users from a given organization?

a. A program analyst b. A server administrator c. A technical head d. A software developer

Computer Science & Information Technology

Which of the following is an example of a closed path?

A. Circle B. Rectangle C. Square D. Triangle

Computer Science & Information Technology