I can get second highest salary by this query. is it possible to use this query for calculate fifth highest salary??
SELECT max(salary)
FROM [Employee]
where (EmployeeID not in
(SELECT max(EmployeeID ) FROM [Employee] ))
please help me...
I can get second highest salary by this query. is it possible to use this query for calculate fifth highest salary??
SELECT max(salary)
FROM [Employee]
where (EmployeeID not in
(SELECT max(EmployeeID ) FROM [Employee] ))
please help me...