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,min(salary) as "sal" FROM Employees GROUP BY first_name having min(salary) >0;