What is the result of the SQL query: SELECT AVG(salary) FROM employees?
Q1. What is the result of the SQL query: SELECT AVG(salary) FROM employees?
Answer: Average salary of employees
Explanation: The AVG() function calculates the average value of the salary column in the employees table.