What is a cursor for loop ?

Answers were Sorted based on User's Feedback



What is a cursor for loop ?..

Answer / anil kumar jampana

cursor for loop is also a cursor. Here no need to handle
open,fetch,close operations. These operations are handled
by for loop.

Is This Answer Correct ?    8 Yes 0 No

What is a cursor for loop ?..

Answer / dipti

Another nice feature of the CURSOR FOR is the ability to
define the cursor inline. Below is a cursor that is not
declared in the declaration section of the executing
block. The cursor definition is included in the CURSOR FOR.
SQL> begin
2 for r_c11 in
(select author_last_name l_name,
3 author_first_name f_name
4 from author) loop
5 dbms_output.put_line(initcap(
6 r_c11.l_name||
', '||r_c11.f_name));
7 end loop;
8 end;
9

Is This Answer Correct ?    4 Yes 1 No

What is a cursor for loop ?..

Answer / nishi

cursor for loop is also a cursor. Here no need to handle open, fetch, close operations. These operations are handled by for loop.

Is This Answer Correct ?    0 Yes 0 No

What is a cursor for loop ?..

Answer / suresh somayajula

Cursor for loop implicitly declares %rowtype as Loop index
opens the cursor and fetch the rows from active set into
fields and then process it and then close the cursor.

Is This Answer Correct ?    1 Yes 3 No

Post New Answer

More SQL PLSQL Interview Questions

explain the difference between myisam static and myisam dynamic. : Sql dba

0 Answers  


Which column in the user.triggers data dictionary view shows that the trigger is a pl/sql trigger?

0 Answers  


ex: take one schema in that t1,t2,.....tn tables and you don't no the table name also. write a procedure if enter columns name then display the maching columns .otherwise display the unmatch columns.

1 Answers   Zensar,


What is the difference between a procedure and a function?

0 Answers  


Is left join same as join?

0 Answers  






Explain the order of sql statement execution?

0 Answers  


What is pragma exception and how, when, where us

5 Answers  


What are records give examples?

0 Answers  


How you improve the performance of sql*loader? : aql loader

0 Answers  


What is rename command in sql?

0 Answers  


How do I delete a trigger?

0 Answers  


What is dml with example?

0 Answers  


Categories