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
Explain a join?
Explain about extended stored procedure?
Explain various On-Delete options in a DB table. Which is the default option?
What is a hint?
What is the purpose of the tempdb database?
what is a transaction and what are acid properties? : Sql server database administration
What is default port number for sql server 2000?
What is key set driven?
What are the basic functions for master, msdb, model, tempdb and resource databases?
What is function of master database?
Explain what are partitioned views and distributed partitioned views?
How to populate a table in sql server?
What types of replication are supported in sql server?
Explain log shipping?
What is global temp table?