Thursday, March 4, 2010

What is the Querry for retrieving the 2nd highest

select max(salary) from where salary! (select max(salary) from )

1 comment:

  1. Informix: select max(salary) from Table a where a.salary < (select max(salary) from Table)

    ReplyDelete