I am trying to find the logical error behind an example of a database in one of my textbooks, and I am completely stumped on what the issue may be. I've tried researching it and everything. Maybe if someone else could see the problem, I'd appreciate the help.
Find the last names of the employees who do not work in the research department.
(SELECT LNAME FROM EMPLOYEE )
EXCEPT
(SELECT LNAME FROM EMPLOYEE, DEPARTMENT
WHERE EMPLOYEE,DNO = DEPARTMENT.DNUMBER AND DNAME LIKE 'Research');
The site in which the information is from is
Find the last names of the employees who do not work in the research department.
(SELECT LNAME FROM EMPLOYEE )
EXCEPT
(SELECT LNAME FROM EMPLOYEE, DEPARTMENT
WHERE EMPLOYEE,DNO = DEPARTMENT.DNUMBER AND DNAME LIKE 'Research');
The site in which the information is from is