how to retrive only second row from table in sql server
2000?
Answer Posted / shashikant
select min(id) from cms_dfm where id in (SELECT TOP 2 ID
from CMS_DFM Order by
ID desc)
| Is This Answer Correct ? | 6 Yes | 4 No |
Post New Answer View All Answers
Suppose you want to implement the many-to-many relationships while designing tables. How would you do it?
Is sql server difficult to learn?
what is checksum in sql server.........???
How to convert a table data in XML format in sql server?
Explain the dbcc pintable command when would you use it?
What is the difference between substr and charindex in the sql server?
there is a trigger defined for insert operations on a table, in an oltp system. The trigger is written to instantiate a com object and pass the newly inserted rows to it for some custom processing. What do you think of this implementation? Can this be implemented better? : Sql server database administration
What is role playing dimension with two examples? : sql server analysis services, ssas
What are different types of raid levels?
How can I create a new template for import ? : sql server management studio
How to create function with parameter in sql server?
Define master database?
What are the new features of sql server 2012 reporting service?
What are the types of dml?
Is there any difference between the primary key and unique key?