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
Write a code to select distinct records without using the DISTINCT keyword.
What is master database? : SQL Server Architecture
What are the 10 characteristics of data quality?
In which files does sql server actually store data?
What programming language would you use to create embedded functions in ssrs?
How to delete duplicate records based on single column from a table?
Explain the properties of the relational tables?
How can you find out how many rows returned in a cursor?
Define views.
What is the difference between implicit and explicit transaction?
How do you check sql server is up and running?
What is a constant or literal in ms sql server?
How to insert multiple rows with a subquery?
Explain about merge replications?
What are the events recorded in a transaction log?