View Single Post
  #6 (permalink)  
Old 12-27-2006, 01:39 AM
GasGiant
 
Posts: n/a
Default MySQL answer. Re: i want to get the third highest salary from a table?

[sql]
SELECT Emp_id, Emp_salary
FROM employees
ORDER BY Emp_salary
LIMIT 2, 1;
[/sql]
Edit/Delete Message Reply With Quote