Find faculty members who do not teach any course in Spring 2003 semester. Use correlated subquery with NOT EXISTS operator on SP03SECT table.

Use the Indo–US College database tables to design the following subqueries. (Use the spooling method to capture all queries and results in the CHAP8SP2.LST file)

```
SQL> SELECT FacultyId, Name
2 FROM faculty o
3 WHERE NOT EXISTS
4 (SELECT '1'
5 FROM sp03sect
6 WHERE FacultyId = o.FacultyId);

FACULTYID NAME
---------- ---------------
222 Williams
123 Mobley
235 Vajpayee
345 Sen
444 Rivera
555 Chang
333 Collins

7 rows selected.
```

Computer Science & Information Technology

You might also like to view...

If a user selects the option of deleting all cached files each time Internet Explorer closes, all cookies will be deleted as well

a. True b. False

Computer Science & Information Technology

WiMAX is another name for the IEEE 802.16 standard for wireless ____.

A. WANs B. LANs C. MANs D. DANs

Computer Science & Information Technology