how to retrive only second row from table in sql server
2000?
Answer Posted / prabhat sharma
select top 1 * from xyz where rno > (select top 1 rno from xyz)
rno is a column name and xyz is a table name
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Types of Authentications in Sql Server? How user gets authenticated through windows authentication?
what is a live lock? : Sql server database administration
What is difference between count (*) and count column?
What is difference between rownum and rowid?
Explain how to use linked server?
Why should we go for stored procedures? Why not direct queries?
What are subquery and its properties?
What is transaction server explicit transaction?
Where are full-text indexes stored?
what changed between the previous version of sql server and the current version? : Sql server database administration
Explain logical operators in sql server?
Does the unique constraint create an index?
What are the new features introduced in SQL Server 2000? What changed between the previous version of SQL Server and the current version?
What are the tables in sql?
You want to implement the one-to-one relationship while designing tables. How would you do it?