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
Where not exists in sql?
Does sql*plus also have a pl/sql engine?
Define join and name different types of joins?
What are the types of operators available in sql?
What is identity column in sql server?
What are sql indexes?
what is the difference between mysql_fetch_array and mysql_fetch_object? : Sql dba
What are types of indexes in sql?
Why indexing is needed?
What are the advantages of indexing?
Under what condition it is possible to have a page level lock and row lock at the same time for a query? : Transact sql
What does joining a thread mean?
what are myisam tables? : Sql dba
what is the difference between myisam static and myisam dynamic? : Sql dba
What are character functions in sql?