What is the result of the SQL query: SELECT MIN(salary) FROM employees?
Q1. What is the result of the SQL query: SELECT MIN(salary) FROM employees?
Answer: Minimum salary
Explanation: The SQL query 'SELECT MIN(salary) FROM employees' returns the minimum salary from the employees table, using the MIN aggregate function.