how to find the particular row in table?(means suppose one
table contain 10 rows , in these 10 rows how to find the
particular row(example in 10 rows i want 5 row how)?

Answer Posted / lince thomas

it is simple,
we can get 5th row using this,


select * from (
select rank() over (order by Empid)as rno,* from empmast)T
where T.rno=5

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is coalesce and check constraint in sql server?

540


What is exclusive locks?

535


Difference between group by clause and having clause in SQL?

562


What is the difference between count and distinct count?

464


How will you find out if there are expensive SQL statements running or not?

574






Tell me in brief how sql server enhances scalability of the database system?

522


What is the difference between varchar and nvarchar?

520


How to get a list of columns in a view using "sys.columns" in ms sql server?

513


Explain collation?

618


What is the datatype of rowid?

506


New concepts of sql server 2005 use in your project.

1910


What are diverse clauses that form a part of sql?

595


What is catalog views?

605


What are the steps to process a single select statement?

509


Can we run Reporting Services with SQL Server express edition, which is a free version of SQL Server?

78