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
What is nosql example?
Explian rowid, rownum? What are the psoducolumns we have?
What is a primary key? Explain
Differentiate pl/sql and sql?
Why coalesce is used in sql?
How does postgresql compare to "nosql"?
What is data modelling in sql?
What is multiple columns?
What is scalar and vector?
Explain what is a field in a database and record in a database?
Define commit?
What is lookup table in sql?
Can we join two tables without common column?
How to fetch alternate records from a table?
How to convert comma separated string to array in pl/sql?