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
Explain relational data?
Why truncate is ddl command?
What is subquery? Explain the properties of a subquery?
Is sql server a database?
How to locate and take substrings with charindex() and substring() functions?
Stored Procedure returns data from multiple tables. How to access it in your ASP.Net code?
what's new in sql server 2016?
Why we should not use triggers?
What is the report builder?
Why use stored procedures in sql server?
Can you explain various data region available in ssrs with their use?
Can you change the data type of a column in a table after the table has been created? If so, which command would you use?
How to use group functions in the select clause in ms sql server?
Write a sql query to get zero records from a table having n number of records?
Explain what is cte (common table expression)?