How do you retrieve set of records from database server.
{Set max records = 100 & use paging where pager page no or
records = 10 & after displaying 100 records again connect to
database retrieve next 100 }
Answer Posted / pandu
Hi the above posted Querry is wrong
this is Correct
Select * from TableName
where rowid in(
Select rowid from TableName
where rownum =&upto(EX <=100,200
minus
select rowid from TableName
where rownum<=&from(EX =1,101)
)
| Is This Answer Correct ? | 8 Yes | 2 No |
Post New Answer View All Answers
How does a self join work?
Is sql harder than python?
Why is sql important?
How do I start sql from command line?
Which are sql * plus commands?
How many commands are in sql?
What is the difference between count 1 and count (*) in a sql query?
Explain the difference between triggers and constraints?
What is indexing in sql and its types?
What is difference between stored function and application function?
How do you break a loop in pl sql?
How do I clear the screen in sql plus?
what is the difference between char_length and length? : Sql dba
What are functions in sql?
Why do we use %rowtype & %type in plsql?