Answer Posted / 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 |
Post New Answer View All Answers
What is a behavioral trigger?
How do I write a cron which will run a sql query and mail the results to agroup?
Which command is used to delete a trigger?
What is sql not null constraint?
What does where 1/2 mean in sql?
Which is better stored procedure or query?
What is the difference between rename and alias?
What are different clauses used in sql?
When is a declare statement required?
How do I trace sql profiler?
Why is stored procedure faster than query?
What is example of database?
What is raw datatype in sql?
Mention what does plvtab enables you to do when you showthe contents of pl/sql tables?
what are all the different normalizations? : Sql dba