19. Find the Maximum Salary

Write a SQL query to find the highest salary in the Employees table.

Total : 1 Discussion
Login
Prashanthi B
    
SELECT MAX(SALARY) AS highest_salary FROM Employees;
Reply