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 the most common trace flags used with sql server?
how to create “alternate row colour”?
How to execute a sql statement using odbc_exec()?
What are different types of table joins?
Can group by and orderby be used together?
How many categories of data types used by sql server?
Explain view in sql server?
How to list all login names on the ms sql server?
What are views in ms sql server?
Does transparent data encryption provide encryption when transmitting data across the network?
Does a sql server 2005 select statement require a from?
What are the aggregate and scalar functions?
What is the purpose of data source?
What xml support does the sql server extend?
Explain primary key and foreign key constraints?