Nested cursor demo : Nested Cursor « Cursor « Oracle PL / SQL

Oracle PL / SQL
1. Aggregate Functions
2. Analytical Functions
3. Char Functions
4. Constraints
5. Conversion Functions
6. Cursor
7. Data Type
8. Date Timezone
9. Hierarchical Query
10. Index
11. Insert Delete Update
12. Large Objects
13. Numeric Math Functions
14. Object Oriented Database
15. PL SQL
16. Regular Expressions
17. Report Column Page
18. Result Set
19. Select Query
20. Sequence
21. SQL Plus
22. Stored Procedure Function
23. Subquery
24. System Packages
25. System Tables Views
26. Table
27. Table Joins
28. Trigger
29. User Previliege
30. View
31. XML
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 Tutorial
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 » Cursor » Nested Cursor 
Nested cursor demo
  
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.

   
    
  
Related examples in the same category
1. Cursor within a cursor
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.