how to retrive only second row from table in sql server
2000?
Answer Posted / arun kumar k s
drop table #temp select top 2 identity(int,1,1) as SlNo, *
into #temp from TABLE_NAME select * from #temp where SlNo=2
| Is This Answer Correct ? | 7 Yes | 5 No |
Post New Answer View All Answers
What is hierarchy, what are its types and difference between them? : sql server analysis services, ssas
how you can deploy an ssrs report?
How do you handle datasets larger than 50 gb?
What is the downside of using udf?
What is indexed view?
Write an sql query for deleting duplicate rows?
explain what are the steps you will take, if you are tasked with securing an sql server? : Sql server database administration
What are the Advantages of using CTE in sql server?
How to copy data from one table to another table?
Name 3 of the features that the sql server built-in function loginproperty performs on standard logins? : sql server security
Introduction of rollup clause using sum and group by clause?
What is difference between standardization and normalization?
What are the steps to insert a table?
How do I get to sql server configuration manager?
What is the difference between Normalization and De-normalization?