how to retrive only second row from table in sql server
2000?
Answer Posted / belson gnana pradeep
SELECT TOP 1 salary FROM
(SELECT DISTINCT TOP 2 salary FROM employee
ORDER BY salary DESC) a ORDER BY salary
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is multi-statement table-value user-defined function?
What are the properties of the transaction?
What is a covered index?
What happens when transaction log is full?
Explain the difference between clustered and non-clustered index?
How to convert a table data in XML format in sql server?
What is model database? : SQL Server Architecture
What is the impact on other user sessions when creating indexes?
Where are full-text indexes stored?
What are triggers in ms sql server?
Explain sql server authentication modes?
What is sqlcmd?
What are Spatial data types in SQL Server 2008
What is oltp (online transaction processing)?
Do you know what are pages and extents? : SQL Server Architecture