Cursor expressions using multiple levels of nested cursors : Cursor function « 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 » Cursor function 
25. 16. 3. Cursor expressions using multiple levels of nested cursors
SQL>
SQL>
SQL> create table product(
  2     product_id number(4)     not null,
  3     product_description varchar2(20not null
  4  );

Table created.

SQL>
SQL> insert into product values (1,'Java');

row created.

SQL> insert into product values (2,'Oracle');

row created.

SQL> insert into product values (3,'C#');

row created.

SQL> insert into product values (4,'Javascript');

row created.

SQL> insert into product values (5,'Python');

row created.

SQL>
SQL>
SQL> create table company(
  2     product_id        number(4)    not null,
  3     company_id          NUMBER(8)    not null,
  4     company_short_name  varchar2(30not null,
  5     company_long_name   varchar2(60)
  6  );

Table created.

SQL> insert into company values(1,1001,'A Inc.','Long Name A Inc.');

row created.

SQL> insert into company values(1,1002,'B Inc.','Long Name B Inc.');

row created.

SQL> insert into company values(1,1003,'C Inc.','Long Name C Inc.');

row created.

SQL> insert into company values(2,1004,'D Inc.','Long Name D Inc.');

row created.

SQL> insert into company values(2,1005,'E Inc.','Long Name E Inc.');

row created.

SQL> insert into company values(2,1006,'F Inc.','Long Name F Inc.');

row created.

SQL>
SQL>
SQL>
SQL> create table company_site(
  2     site_no number(4)       not null,
  3     site_descr varchar2(20not null
  4  );

Table created.

SQL> insert into company_site values (1,'New York');

row created.

SQL> insert into company_site values (2,'Washington');

row created.

SQL> insert into company_site values (3,'Chicago');

row created.

SQL> insert into company_site values (4,'Dallas');

row created.

SQL> insert into company_site values (5,'San Francisco');

row created.

SQL>
SQL>
SQL> create table org_company_site(
  2     company_id number(8not null,
  3     site_no number(4not null
  4  );

Table created.

SQL> insert into org_company_site values (1001,1);

row created.

SQL> insert into org_company_site values (1002,2);

row created.

SQL> insert into org_company_site values (1003,3);

row created.

SQL> insert into org_company_site values (1004,1);

row created.

SQL> insert into org_company_site values (1004,2);

row created.

SQL> insert into org_company_site values (1004,3);

row created.

SQL> insert into org_company_site values (1005,1);

row created.

SQL> insert into org_company_site values (1005,4);

row created.

SQL> insert into org_company_site values (1005,5);

row created.

SQL> insert into org_company_site values (1006,1);

row created.

SQL>
SQL> create or replace function f_cursor_exp_complex return NUMBER
  2  is
  3    TYPE rc is REF CURSOR;
  4
  5    CURSOR myCursor IS
  6      SELECT h.product_description,
  7        CURSOR(SELECT o.company_long_name,
  8          CURSOR (SELECT s.site_descr
  9                  FROM org_company_site os,company_site s
 10                  WHERE os.site_no =s.site_no
 11                  AND os.company_id =o.company_id)as site_name
 12               FROM company o
 13               WHERE o.product_id =h.product_id)long_name
 14      FROM product h;
 15
 16    myRecord rc;
 17    company_rec rc;
 18    v_product_description VARCHAR2(20);
 19    v_company_long_name VARCHAR2(60);
 20    v_site_name VARCHAR2(20);
 21  BEGIN
 22
 23    OPEN myCursor;
 24    LOOP
 25
 26      FETCH myCursor INTO v_product_description,myRecord;
 27      EXIT WHEN myCursor%notfound;
 28      LOOP
 29
 30        FETCH myRecord INTO v_company_long_name,company_rec;
 31        EXIT WHEN myRecord%notfound;
 32        LOOP
 33          FETCH company_rec INTO v_site_name;
 34          EXIT WHEN company_rec%notfound;
 35          DBMS_OUTPUT.PUT_LINE(v_product_description ||''||v_company_long_name||''||v_site_name);
 36        END LOOP;
 37      END LOOP;
 38    END LOOP;
 39
 40    close myCursor;
 41    RETURN (0);
 42  EXCEPTION WHEN OTHERS THEN
 43    RETURN (SQLCODE);
 44  END;
 45  /

Function created.

SQL>
SQL> drop table company;

Table dropped.

SQL>
SQL> drop table product;

Table dropped.

SQL>
SQL> drop table company_site;

Table dropped.

SQL>
SQL> drop table org_company_site;

Table dropped.

SQL>
25. 16. Cursor function
25. 16. 1. Cursor function
25. 16. 2. A PL/SQL function that uses a cursor expression
25. 16. 3. Cursor expressions using multiple levels of nested cursors
25. 16. 4. SYS_REFCURSOR as parameter
25. 16. 5. Passing data from one table function to another in a pipelined fashion
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.