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 employees who earn more than the average salary?
SELECT * FROM Employees HAVING Salary > AVG(Salary);
SELECT * FROM Employees WHERE Salary > (SELECT AVG(Salary) FROM Employees);
SELECT * FROM Employees WHERE AVG(Salary) < Salary;
SELECT * FROM Employees WHERE Salary > AVG(Salary);
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!