A table has 150 records. How do you retrieve 100th row to
120th row from that table ?
Answer Posted / jayanth
select * from (select a.*, row_number() over (order by empno) rn from emp a) where rn between 100 and 120;
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the use of <> sql?
How do I trace sql profiler?
What is having clause in sql?
What is the size of partition table?
What are the advantages of pl sql?
Under what condition it is possible to have a page level lock and row lock at the same time for a query? : Transact sql
discuss about myisam index statistics collection. : Sql dba
What is the difference between view and stored procedure?
What are sql indexes?
Explain the significance of the & and && operators in pl sql.
What is a heap in sql?
Is null operator in sql?
What is difference between table and view?
What is a crud api?
how to get a list of indexes of an existing table? : Sql dba