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 deploy, process and build? : sql server analysis services, ssas

570


List out the difference between union and union all in sql server?

517


What is the boxing and unboxing concept in .net?

546


Explain what are the database objects? : SQL Server Architecture

566


What is sql profiler. What are the default templates with it? : sql server database administration

515






How to download microsoft sql server 2005 express edition?

574


What is the difference between dropping a database and taking a database offline?

696


What is the process of normalising?

584


What is surrogate key? : sql server analysis services, ssas

694


How to drop an existing table?

548


How to encrypt data between dialogs?

571


Explain what are magic tables in sql server?

535


What is the sql server agent?

584


Define compound operators?

533


What are different types of schemas?

516