can anybody tell us, how to select 2nd max salary from
table.
my id is ashish.akk@gmail.com
Answer Posted / naufal basheer
select e.* from
(select row_number() over (order by salary desc) as Rno,*
from employee)e
where e.Rno = 2
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
How to integrate the ssrs reports in application?
What is user defined stored procedures?
How to modify the underlying query of an existing view?
What is the use of nvl work?
role of sql sever 2005 in database rather than any other database
What are the new scripting capabilities of ssms? : sql server management studio
What is nolock?
What does Master database contains?
What are the properties of sub-query?
What is history table in sql server?
How do I delete a sql server database?
How to implement service broker?
Do you know the policy based administration feature of sql server 2008?
How to update a field in SQL after ALTERING a row?
what is the system function to get current user's user id? : Sql server database administration