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
Describe different Processing Modes offered by SSRS?
How do I save a stored procedure in sql server?
Explain cursor as data base object?
What are commonly used mssql functions in php?
What is 'write-ahead log' in sql server 2000 ?
What is meant by Active-Passive and Active-Active clustering setup?
What is subquery explain with example?
How to filter records of table in SQL SERVER?
As per your opinion what are the five top responsibilities of a dba? : sql server database administration
Call by value and call by reference in procedure and function, with NOCOPY.
Explain how you can deploy an SSRS report?
how can a database be repaired? : Sql server administration
What is normalization? What number of normalization shapes are there?
Is the primary key column of a table an index in ms sql server?
What are the different types of sub-queries?