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
Delete duplicate rows without using rowid.
How check triggers in sql server?
How to find the source of a table in sql server?
How to find the login name linked to a given user name?
Can sql servers link to other servers?
What is the significance of null value and why should we avoid permitting null values?
What is the default order of an order by clause?
What are the different sql server versions?
What is indexing a document?
What does set rowcount do?
What is the recovery model? List the types of recovery model available in sql server?
What is nonclustered index on computed columns?
What the different topologies in which replication can be configured?
How to get the query of a table in sql server?
What are the steps you should follow to start sql server in single-user mode?