Answer Posted / cpnagar
SELECT salary FROM (SELECT ROW_NUMBER() OVER (ORDER BY
salary desc) AS RN,*
FROM
emp)temp
WHERE
RN=3
| Is This Answer Correct ? | 2 Yes | 3 No |
Post New Answer View All Answers
What is transaction server consistency?
What is sql server profiler trace data file?
Can an automatic recovery be initiated by a user?
Explain what is “asynchronous” communication in sql server service broker?
Which event (check constraints, foreign key, rule, trigger, primary key check) will be performed last for an integrity check?
Can you always create a cache of a report?
What is a select query statement in ms sql server?
How to create an index on a view?
What are system databases into sql server (2005/2008)?
How to Insert multiple rows with a single insert statement?
What is the web service used for reporting services?
Why I am getting "the microsoft .net framework 2.0 in not installed" message?
Can a function call a stored procedure in sql server?
How to create new table with "create table" statements?
What is a group function explain with an example?