You are on page 1of 1

Write a query to find the second largest value in a given column of a table?

select max(salary)
from employees
where salary < (select max(salary) from employees)

You might also like