A PL/SQL function that uses a cursor expression : 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. 2. A PL/SQL function that uses a cursor expression
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> create or replace function f_cursor_exp 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               FROM company o
  9               WHERE o.product_id =h.product_id)long_name
 10      FROM product h;
 11
 12    productRecord rc;
 13    v_product_description VARCHAR2(20);
 14    v_company_long_name VARCHAR2(60);
 15  BEGIN
 16
 17    OPEN myCursor;
 18    LOOP
 19      FETCH myCursor INTO v_product_description,productRecord;
 20      EXIT WHEN myCursor%notfound;
 21
 22      LOOP
 23        FETCH productRecord INTO v_company_long_name;
 24        EXIT WHEN productRecord%notfound;
 25        DBMS_OUTPUT.PUT_LINE(v_product_description ||''||v_company_long_name);
 26      END LOOP;
 27    END LOOP;
 28
 29    close myCursor;
 30    RETURN (0);
 31  EXCEPTION WHEN OTHERS THEN
 32    RETURN (SQLCODE);
 33  END;
 34  /

Function created.

SQL>
SQL>
SQL>
SQL> drop table company;

Table dropped.

SQL>
SQL> drop table product;

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.