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
Enlist the data types that can be used in pl/sql?
What are the different datatypes available in PL/SQL?
1. is it possible to use the cursor atttibutes (%found ,% rowcount , %isopen , %notfound ) to our user defined cursor names ....... cursor cursor_name is select * from scott.emp if you use... cursor_name%found , %rowcount ,%isopen,%notfound...will it work... -------------------------- 2.what is the difference between the varray and index by table .. -------- 3. type type_name is table of number(8,3) index by binary_integer; identifier_name type_name; first , last , prior , next ,trim are the methods we can use it for the above type...simillary is there any way to apply for cursors... with thanks and regards..sarao...
What is a stored procedure in sql with example?
Explain the working of foreign key?
What are commit, rollback, and savepoint?
What problem one might face while writing log information to a data-base table in pl/sql?
What is the purpose of the primary key?
What is the maximum size of sqlite database?
How do you explain an index?
what is the maximum length of a table name, database name, and fieldname in mysql? : Sql dba
how to see the create table statement of an existing table? : Sql dba
What is user defined functions?
what are all different types of collation sensitivity? : Sql dba
What is secondary key?