Nested cursor : Introduction « Cursor « Oracle PL/SQL Tutorial

Oracle PL/SQL Tutorial
1. Introduction
2. Query Select
3. Set
4. Insert Update Delete
5. Sequences
6. Table
7. Table Joins
8. View
9. Index
10. SQL Data Types
11. Character String Functions
12. Aggregate Functions
13. Date Timestamp Functions
14. Numerical Math Functions
15. Conversion Functions
16. Analytical Functions
17. Miscellaneous Functions
18. Regular Expressions Functions
19. Statistical Functions
20. Linear Regression Functions
21. PL SQL Data Types
22. PL SQL Statements
23. PL SQL Operators
24. PL SQL Programming
25. Cursor
26. Collections
27. Function Procedure Packages
28. Trigger
29. SQL PLUS Session Environment
30. System Tables Data Dictionary
31. System Packages
32. Object Oriented
33. XML
34. Large Objects
35. Transaction
36. User Privilege
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Oracle PL/SQL Tutorial » Cursor » Introduction 
25. 1. 12. Nested cursor
SQL>
SQL> CREATE TABLE emp (
  2    id         NUMBER PRIMARY KEY,
  3    fname VARCHAR2(50),
  4    lname  VARCHAR2(50)
  5  );

Table created.

SQL>
SQL> INSERT INTO emp (id, fname, lname)VALUES (1'A''B');

row created.

SQL> INSERT INTO emp (id, fname, lname)VALUES (2'C''D');

row created.

SQL> INSERT INTO emp (id, fname, lname)VALUES (3'Enn', 'F');

row created.

SQL> INSERT INTO emp (id, fname, lname)VALUES (4'G''H');

row created.

SQL> INSERT INTO emp (id, fname, lname)VALUES (5'G''Z');

row created.

SQL>
SQL>
SQL> CREATE TABLE books (
  2    isbn      CHAR(10PRIMARY KEY,
  3    category  VARCHAR2(20),
  4    title     VARCHAR2(100),
  5    num_pages NUMBER,
  6    price     NUMBER,
  7    copyright NUMBER(4),
  8    emp1   NUMBER,
  9    emp2   NUMBER,
 10    emp3   NUMBER
 11  );

Table created.

SQL>
SQL> INSERT INTO books (isbn, category, title, num_pages, price, copyright, emp1, emp2, emp3)
  2             VALUES ('1''Database', 'Oracle', 56339.992009123);

row created.

SQL> INSERT INTO books (isbn, category, title, num_pages, price, copyright, emp1, emp2)
  2             VALUES ('2''Database', 'MySQL', 76544.99200945);

row created.

SQL> INSERT INTO books (isbn, category, title, num_pages, price, copyright, emp1, emp2, emp3)
  2             VALUES ('3''Database', 'SQL Server', 40439.992001678);

row created.

SQL>
SQL> SET SERVEROUTPUT ON ESCAPE OFF
SQL>
SQL> DECLARE
  2
  3     cv_emp SYS_REFCURSOR;
  4     v_title BOOKS.TITLE%TYPE;
  5     v_emp emp%ROWTYPE;
  6     v_counter PLS_INTEGER := 0;
  7
  8     CURSOR book_cur IS SELECT b.title,CURSOR (SELECT FROM emp a WHERE a.id = b.emp1 OR a.id = b.emp2 OR a.id = b.emp3)
  9        FROM books b
 10        WHERE isbn = '1';
 11
 12  BEGIN
 13
 14     DBMS_OUTPUT.ENABLE(1000000);
 15
 16     OPEN book_cur;
 17
 18     LOOP
 19        FETCH book_cur INTO v_title, cv_emp;
 20        EXIT WHEN book_cur%NOTFOUND;
 21
 22        v_counter := 0;
 23
 24        DBMS_OUTPUT.PUT_LINE('Title from the main cursor: '||v_title);
 25
 26        LOOP
 27           FETCH cv_emp INTO v_emp;
 28           EXIT WHEN cv_emp%NOTFOUND;
 29
 30           v_counter := v_counter + 1;
 31
 32           DBMS_OUTPUT.PUT_LINE('emp'||v_counter||': '||v_emp.fname||' '||v_emp.lname);
 33        END LOOP;
 34     END LOOP;
 35
 36     CLOSE book_cur;
 37
 38  END;
 39  /
Title from the main cursor: Oracle
emp1: Enn F
emp2: C D
emp3: A B

PL/SQL procedure successfully completed.

SQL> drop table emp;

Table dropped.

SQL> drop table books;

Table dropped.
25. 1. Introduction
25. 1. 1. Cursors
25. 1. 2. First Cursor Example
25. 1. 3. An example of opening the cursorValue cursor
25. 1. 4. OPEN Cursor for fetching
25. 1. 5. A Cursor for counting
25. 1. 6. To prepare the comma-separated list
25. 1. 7. Create a cursor for update
25. 1. 8. An example of cursor variable assignment
25. 1. 9. Assigning different queries to the same cursor variable
25. 1. 10. Cursor to reference whole table
25. 1. 11. select first row to a cursor
25. 1. 12. Nested cursor
25. 1. 13. Cursor performance
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.