how u can find the n row from a table?
Answer Posted / rama krishna
If you want nth record from table employee then..
select * from employee where rownum <= n
minus
select * from employee where rownum < n
the above query will suffice.
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
How do you pronounce sql?
What is delete command in sql?
how to run 'mysql' commands from a batch file? : Sql dba
What are the differences between implicit and explicit cursors?
How to create your own reports in sql developer?
How to sort the rows in sql.
ERROR:Insert or update on table"accnt" violates foreign key constraints "acct_to_curr_symbol" DETAILS:KEY(accnt_curr_id)(-2)is not present in the table "curr_symbol" ......solve The Problem..
Show the two pl/sql cursor exceptions.
What are the advantages of pl sql?
discuss about myisam index statistics collection. : Sql dba
What does an inner join do?
Is sql free?
What are the two different parts of the pl/sql packages?
What is sql and how does it work?
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...