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 TOP 1 WITH TIES * FROM employees ORDER BY salary ASC