how to retrive only second row from table in sql server
2000?
Answer Posted / surenda tarai
select top 1 * from(select top 3 * from tablename order by 1
asc) as at order by 1 desc
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
write an SQL query to list the employees who joined in the month of January?
How to create user defined functions with parameters?
How can a user-defined datatype be created?
Explain “not null constraint” in sql server?
how you can get the list of largest tables in a database? : Sql server administration
What is NOT NULL Constraint in sql server 2012?
What is data compression?
You want to implement the many-to-many relationship while designing tables. How would you do it?
what is difference between NULL and ISNULL in SQL Server 2008?
What is difference between index seek vs. Index scan?
How to Sync Two SQL Azure Databases?
How to replace null values in expressions using isnull()?
What is stored in the mssqlsystemresource database? : sql server database administration
what are the steps you will take to improve performance of a poor performing query? : Sql server database administration
Can two tables share the same primary key?