List courses and their description whose prerequisites are taught by Nina Schorin.

What will be an ideal response?


```SELECT c.course_no, c.description
FROM course c, course pr
WHERE c.prerequisite = pr.course_no
AND pr.course_no IN (SELECT s.course_no
FROM section s, instructor i
WHERE s.instructor_id = i.instructor_id
AND i.last_name = 'Schorin')```

Computer Science & Information Technology

You might also like to view...

To move to the next slide in Slide Show view, ______________.

A. click the left mouse button B. press the right-arrow key C. either a or b D. neither nor b

Computer Science & Information Technology

The arithmetic operator % is the C++ symbol for the ____ operation.

A. addition B. percentage C. modulus D. division

Computer Science & Information Technology

The first sector on a hard drive is called the _______

Fill in the blank(s) with correct word

Computer Science & Information Technology

_____ are rules of thumb arising from experience.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology