How to select nth record from a table?
Answer Posted / saravanan p
select * from
(select row_number() over(order by empid) rno,* from tbl)
tbl1
where tbl1.rno=n
| Is This Answer Correct ? | 8 Yes | 6 No |
Post New Answer View All Answers
What is an execution plan? When would you use it?
What is filtered index?
List the different normalization forms?
Do you know concepts and capabilities of sql server?
What is primary key and example?
How to insert multiple rows with one insert statement in ms sql server?
What is scheduled job and how to create it?
What is the simplest way to create a new database in ms sql server?
Which rendering formats are affected by the pagesize properties?
What is openrowset sql server?
How to add code to the existing article (using improve article)?
What are the types of normalization?
Mention the differences between substr and charindex in sql server.
Why use cursor in sql server?
What is a primary key?