What is the result of the SQL query 'SELECT MAX(salary) FROM employees;'?
Q1. What is the result of the SQL query 'SELECT MAX(salary) FROM employees;'?
Answer: Maximum salary
Explanation: The SQL query uses the MAX() function to retrieve the maximum salary from the employees table.