how to retrive only second row from table in sql server
2000?
Answer Posted / lekhraj
select top 1 * from(select top 2 * from tbl_test order by 1
asc) as at order by 1 desc
| Is This Answer Correct ? | 24 Yes | 5 No |
Post New Answer View All Answers
What are the types of normalization?
Benefits of Stored Procedures?
How to create a view on an existing table in ms sql server?
What are truncate options available in sql server? : sql server database administration
What is inner join? Explain with an example?
What are out-of-range errors with date and time literals?
How to create a simple stored procedure in ms sql server?
Explain about sql server login?
Explain the steps to create and execute a user-defined function in the sql server?
How to change the ownership of a schema in ms sql server?
Explain about protocol layer present in SQL server?
The external application that is executed in one of the tasks does not have a log file, but only a screen log. How can I save the data from the screen? : sql server management studio
Does a specific recovery model need to be used for a replicated database? : sql server replication
Explain what are the different index configurations a table can have?
How to test subquery results with the exists operator?