SELECT MIN (Salary) FROM Employee will return the highest salary from the table.
SELECT MIN (Salary) FROM Employee
False
Reason — SELECT MIN (Salary) FROM Employee will return the lowest salary from the Employee table.