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
Is left join inner or outer by default?
What are inbuilt functions in sql?
Can we use insert statement in function?
What is cascade in sql?
what are different types of keys in sql?
How many types of tables are there?
How do I view tables in mysql?
what is 'mysqldump'? : Sql dba
What is a column in a table?
What can you do with pl sql?
Is and as keyword in pl sql?
How do I pipe the output of one isql to another?
What are local and global Indexes and where they are useful.
What is sql partition function?
how to decrement dates by 1 in mysql? : Sql dba