FIS Interview Question

Given a database with employee data how ill you find highest salary.

Interview Answer

Anonymous

Oct 11, 2024

select salary from employee order by salary DESC LIMIT 1; or select max(salary) from employee;