write the sql query to display 5th and 10th row in a table?

Answers were Sorted based on User's Feedback



write the sql query to display 5th and 10th row in a table?..

Answer / lakshmi reddy

select * from(select emp.*,rownum r from emp) where r=5 or r=10

Is This Answer Correct ?    8 Yes 1 No

write the sql query to display 5th and 10th row in a table?..

Answer / kart

select * from (select rownum as rn,aone.* from aone)
where rn in(5,10);

Is This Answer Correct ?    6 Yes 0 No

write the sql query to display 5th and 10th row in a table?..

Answer / gautam ramteke

select *
from(select rt.*,rownum r from (select * from gpr_employee
order by hire_date)rt)
where r in (5,8);

Is This Answer Correct ?    2 Yes 0 No

write the sql query to display 5th and 10th row in a table?..

Answer / gopal

By using rank or dense_rankl()

Is This Answer Correct ?    1 Yes 0 No

write the sql query to display 5th and 10th row in a table?..

Answer / harish

select * from emp where rownum<=&n;
if u give 5 insted of 'n' we get 5th record...

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More Cognos Interview Questions

What is Cardinality

6 Answers   Cognizant, HCL,


Whrer u can save the Report net documentation in our local system?

1 Answers  


What are the advantages of cognos?

0 Answers  


How many fact tables and dimension tables in your project?

3 Answers   IBM,


Interval Prompt's Usage? Example for usage in Project

2 Answers   Cap Gemini,






Can you define report item?

0 Answers  


how many types of keys are there i.e primary key and foreign key etc..?

3 Answers   IBM,


wat is bus schema?

2 Answers  


Can any one help me about cubes in cognos.How to create the cubes and how to migrate from development to QA and also what is the procedure to refresh teh cubes.

2 Answers  


Explain the Difference Between Bursting and Scheduling?

1 Answers  


Why do we create shortcuts in framework manager

4 Answers  


how can create a report like if the salary>50,000 display balance,if salary<50,000 display green?

6 Answers   HCL,


Categories