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 tables and fields?

587


What is crud stand for?

564


What are the ddl commands?

533


what are the types of subquery? : Sql dba

584


what are the differences between get and post methods in form submitting. Give the case where we can use get and we can use post methods? : Sql dba

669






what are the maximum number of rows that can be constructed by inserting rows directly in value list? : Transact sql

498


Show code of a cursor for loop.

580


What is a sql*loader control file?

613


What is dml statement?

515


What is t sql used for?

548


What are the different dcl commands in sql?

557


How to change sql*plus system settings?

540


How do you explain an index number?

531


What are local and global Indexes and where they are useful.

923


What is int identity in sql?

572