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
How fixed length strings are truncated and padded?
Differentiate between a local and a global temporary table?
Insert syudents details in table.Current system date &time insert into joining time.How do insert?( in sysdate only return current system date how do add time?)
What happens if an integer is too big for int date type?
what type of index will get created after executing the above statement? : Sql server database administration
How do I know if localdb is running?
How can we check the sql server version?
How many types of built in functions are there in sql server 2012?
Does sql server 2016 have ssms?
Write down the syntax and an example for create, rename and delete index?
what is the difference in login security modes between v6.5 and 7.0? : Sql server database administration
Do you know the cursor types?
Why the trigger fires multiple times in single login?
What language is sql server written in?
What is the use of sql profiler in sql server 2012?