Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
What Query will produce the following output
SELECT Name, Country FROM Employees WHERE Department = 'IT' UNION SELECT Name, Country FROM Managers WHERE Department = 'HR';
SELECT Name, Country FROM Employees WHERE Department = 'HR' UNION SELECT Name, Country FROM Managers WHERE Department = 'HR';
SELECT Name, Country FROM Employees UNION SELECT Name, Country FROM Managers WHERE Department = 'HR';
SELECT Name, Country FROM Employees UNION SELECT Name, Country FROM Managers
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!