Which SQL query retrieves the names of employees with a salary greater than 50000?
Q1. Which SQL query retrieves the names of employees with a salary greater than 50000?
Answer: SELECT name FROM employees WHERE salary > 50000
Explanation: The SQL query 'SELECT name FROM employees WHERE salary > 50000' retrieves the names of employees with a salary greater than 50000, using a WHERE clause to filter data.