What is the result of the SQL query: SELECT COUNT(*) FROM employees WHERE salary > 50000?
Q1. What is the result of the SQL query: SELECT COUNT(*) FROM employees WHERE salary > 50000?
Answer: Number of employees with salary greater than 50000
Explanation: The COUNT(*) function counts the number of rows in the employees table where the salary is greater than 50000.