Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Which query returns names of employees who work in the same department as 'Alice'?
SELECT Name FROM Employees WHERE Name != 'Alice' AND Department = (SELECT Department FROM Employees WHERE Name = 'Alice');
SELECT Name FROM Employees WHERE Department = (SELECT Department FROM Employees);
SELECT Name FROM Employees WHERE Department = (SELECT Department FROM Employees WHERE Name = 'Alice');
SELECT Name FROM Employees WHERE Department = ALL (SELECT Department FROM Employees WHERE Name = 'Alice');
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!