Answered step by step
Verified Expert Solution
Question
1 Approved Answer
SQL Given two tables below, Department and Employee. The Dept column of Employee table indicates the department an employee belongs to. If Dept is NULL,
SQL
Given two tables below, Department and Employee. The Dept column of Employee table indicates the department an employee belongs to. If Dept is NULL, the employee either does not belong to any department or his belonging department is unknown. Department ------- Dname Office ------ R&D K-71 Sales M-22 Shipping M-23 K-71 Employee ------- EmpID Dept Gender ----- ---- E003 Sales F E012 HRF TE354 NULL E 066 Sales TE219 IT TE008 Services M TITI 3 IT T 3 Which employee(s) belongs to a department but that department doesn't exist in Department table? Display his/her EmpID, Dept, and Gender. If the output contains more than one employee, they should be sorted by their EmplD in ascending order. This query can be solved in many different ways, including (1) (6) described below. These are all presented in Chapter 6 of textbook and lecture videos. For full credits, do not include any hard coded data values such as 'Sales' or 'E219' in your SQL statements. (1) By a SELECT statement with a regular non-correlated subquery and no table joins, no set operators. (2) By a SELECT statement with a correlated subquery and keyword EXISTS but no table joins, no set operators. (3) By a SELECT statement which uses a CTE [all_dept] with a regular non-correlated subquery but no table joins, no set operators. [all_dept] is defined by "select Dname from Department". (4) Same as (3) but the CTE is used in a table join. No subqueries and no set operators are used in the SELECT statement. (5) By a SELECT statement with a table join and no subqueries, no set operators. (6) By a SELECT statement with set operators but no table joins, no subqueriesStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started