|
Consider the employee table with column PROJECT nullable. How can you get a list of employees who are not assigned to any project ?
COBOL SQL Interview Questions
(Continued from previous question...)
Consider the employee table with column PROJECT nullable. How can you get a list of employees who are not assigned to any project ?
SELECT EMPNO FROM EMP WHERE PROJECT IS NULL;
(Continued on next question...)
Other Interview Questions
|