A table has 150 records. How do you retrieve 100th row to
120th row from that table ?
Answer Posted / srinivas
select * from(select <table_name>.*,rownum rn from <Table_name>) where rn between 100 and 120
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is audit logout in sql profiler?
Explain cursor types?
Can we use the cursor's to create the collection in PL/SQL?
What is the main difference between sql and pl/sql?
What is rownum and rowid?
What is a loop in sql?
what are numeric data types? : Sql dba
Why do we use procedures in pl sql?
What is pl sql and why it is used for?
Explain what is a view?
What is the difference between unique and primary key constraints?
What is data type in sql?
Can we use insert statement in function?
How is indexing done in search engines?
Why do we use cursors?