Suppose that you are given the following simple database table called Employee that has 2 columns named Employee ID and Salary:
Employee Employee ID S
try this
select max(salary) as first, (select salary from employee order by salary desc limit 1, 1) as second from employee limit 1