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
How to use distinct and count in sql query? Explain
What are the possible values that can be stored in a boolean data field?
What does (+) mean in sql joins?
What is the sql case statement?
What is pl sql architecture?
How can triggers be used for the table auditing?
How many row comparison operators are used while working with a subquery?
what is a composite primary key ? : Sql dba
Enlist the data types that can be used in pl/sql?
what is a table in a database ? : Sql dba
how to include comments in sql statements? : Sql dba
Write a sql query to get the third highest salary of an employee from employee_table?
how to present a past time in hours, minutes and seconds? : Sql dba
What do you understand by pl/sql cursors?
what is text? : Sql dba