A table has 150 records. How do you retrieve 100th row to
120th row from that table ?

Answer Posted / d

select *
from (select rownum row_num
,tab.*
from table tab)
where row_num between 100 and 120

Is This Answer Correct ?    7 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the dml statements?

689


how can we know the number of days between two given dates using mysql? : Sql dba

548


What is the use of double ampersand (&&) in sql queries? Give an example

613


How do you modify a table in sql?

566


What are the uses of merge?

720






How do you respond to dementia behavior?

533


What is restrict in sql?

557


What is an invalid partition table?

566


What is sql*loader and what is it used for? : aql loader

624


What is trigger with example?

566


what is the use of anchoring object? what r the difference between anchoring object & enclosing object? can any one tell me all the details?

2009


What is the difference between view and stored procedure?

496


What is the meaning of disabling a trigger?

647


Explain normalization and what are the advantages of it?

518


What is the difference between function and procedure in pl/sql?

541