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
How to enter binary string literals in ms sql server?
Give main differences between "Truncate" and "Delete".
How to select true false based on column value in sql server?
How to find the service pack installed? : sql server database administration
What is indexing explain it with an example?
What does nvl stand for?
Which are new data types introduced in sql server 2008?
What are temporal tables in sql server 2016?
how we use window authentication connection with sql server.?
What is NOT NULL Constraint in sql server 2012?
How many files can a database contain in sql server?how many types of data files exists in sql server? How many of those files can exist for a single database?
What is the sql server agent?
Explain about system database?
What is BCP? When does it used in sql server 2012?
What is a transaction and why is it important?