What is the result of the SQL query: SELECT * FROM employees WHERE salary > (SELECT AVG(salary) FROM employees)?
Q1. What is the result of the SQL query: SELECT * FROM employees WHERE salary > (SELECT AVG(salary) FROM employees)?
Answer: Employees with above-average salary
Explanation: The subquery calculates the average salary, and the main query selects employees with salaries above this average.