KnowledgeBoat Logo

Computer Science

SELECT MIN (Salary) FROM Employee will return the highest salary from the table.

SQL Queries

2 Likes

Answer

False

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

Answered By

2 Likes


Related Questions