Find name of the supervisor for employee number 433.
Use the N2 Corporation database tables to design the following subqueries. (Use the spooling method to capture all queries and results in the CHAP8SP1.LST file.)
```
SQL> SELECT Lname, Fname
2 FROM employee
3 WHERE EmployeeId =
4 (SELECT Supervisor
5 FROM employee
6 WHERE EmployeeId = 433);
LNAME FNAME
--------------- ---------------
Dev Derek
```
You might also like to view...
A(n) ____ occurs when only a few ending lines of an element appear at the top of a page, while the bulk of the content appears on the preceding page.
A. widow B. orphan C. child D. parent
What might the output look like?
```
#include