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 of employees
Explanation: The MAX() function returns the maximum value in the salary column of the employees table.