I want to get the name of the employee who has the minimum salary. Is there a way to do this using only one query? I have given my query below, it doesn\'t work because the
SELECT first_name, salary as "sal" FROM employees WHERE salary =(SELECT MIN(salary) FROM employees);