Write a SQL query to find the second-highest salary from the Employees table without using the LIMIT keyword.
Anonymous
SELECT MAX(Salary) AS SecondHighestSalary FROM Employees WHERE Salary < (SELECT MAX(Salary) FROM Employees);
Check out your Company Bowl for anonymous work chats.