Blog contains various PHP, Javascript Code that would be helpful for website development. PHP is a open source scripting language useful to develop dynamic website.
Wednesday, 13 July 2011
Find N’th Highest Salary.......
SELECT salary FROM employee a WHERE 3 = ( SELECT count( salary ) FROM employee b WHERE a.salary <= b.salary ) LIMIT 0 , 30
No comments:
Post a Comment