Use the cursor subquery : Cursor Declaration « 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 Declaration 
25. 2. 5. Use the cursor subquery
SQL>
SQL>
SQL> CREATE TABLE authors (
  2    id         NUMBER PRIMARY KEY,
  3    first_name VARCHAR2(50),
  4    last_name  VARCHAR2(50)
  5  );

Table created.

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    author1   NUMBER CONSTRAINT books_author1
  9              REFERENCES authors(id),
 10    author2   NUMBER CONSTRAINT books_author2
 11              REFERENCES authors(id),
 12    author3   NUMBER CONSTRAINT books_author3
 13              REFERENCES authors(id)
 14  );

Table created.

SQL>
SQL> INSERT INTO authors (id, first_name, last_name)
  2    VALUES (1'Marlene', 'Theriault');

row created.

SQL>
SQL> INSERT INTO authors (id, first_name, last_name)
  2    VALUES (2'Rachel', 'Carmichael');

row created.

SQL>
SQL> INSERT INTO authors (id, first_name, last_name)
  2    VALUES (3'James', 'Viscusi');

row created.

SQL>
SQL> INSERT INTO books (isbn, category, title, num_pages, price, copyright, author1, author2, author3)
  2    VALUES ('72121203', 'Oracle Basics', 'Oracle DBA 101', 56339.991999123);

row created.

SQL>
SQL> SET SERVEROUTPUT ON ESCAPE OFF
SQL>
SQL> DECLARE
  2
  3     cv_author SYS_REFCURSOR;
  4     v_title BOOKS.TITLE%TYPE;
  5     v_author AUTHORS%ROWTYPE;
  6     v_counter PLS_INTEGER := 0;
  7
  8     CURSOR book_cur
  9     IS
 10        SELECT b.title,
 11           CURSOR (SELECT *
 12                   FROM authors a
 13                   WHERE a.id = b.author1
 14                   OR a.id = b.author2
 15                   OR a.id = b.author3)
 16        FROM books b
 17        WHERE isbn = '78824389';
 18
 19  BEGIN
 20
 21     DBMS_OUTPUT.ENABLE(1000000);
 22
 23     OPEN book_cur;
 24
 25     LOOP
 26        FETCH book_cur INTO v_title, cv_author;
 27        EXIT WHEN book_cur%NOTFOUND;
 28
 29        v_counter := 0;
 30
 31        DBMS_OUTPUT.PUT_LINE('Title from the main cursor: '||v_title);
 32
 33        LOOP
 34           FETCH cv_author INTO v_author;
 35           EXIT WHEN cv_author%NOTFOUND;
 36
 37           v_counter := v_counter + 1;
 38
 39           DBMS_OUTPUT.PUT_LINE('Author'||v_counter||': '
 40                                ||v_author.first_name||' '
 41                                ||v_author.last_name);
 42        END LOOP;
 43     END LOOP;
 44
 45     CLOSE book_cur;
 46
 47  END;
 48  /

PL/SQL procedure successfully completed.

SQL>
SQL> drop table books;

Table dropped.

SQL>
SQL> drop table authors;

Table dropped.

SQL>
25. 2. Cursor Declaration
25. 2. 1. Declare cursor
25. 2. 2. VARRAY of Cursor
25. 2. 3. Select column value into a cursor variable
25. 2. 4. Use cursor variables
25. 2. 5. Use the cursor subquery
25. 2. 6. Returning more than one piece of information: Listing the variables separately
25. 2. 7. Defining a Record Type for a Cursor by Using %ROWTYPE
25. 2. 8. Declaring a Cursor within a Procedure
25. 2. 9. Defining a Cursor in an Anonymous PL/SQL Block
25. 2. 10. Defining cursors in the package body
25. 2. 11. Defining cursors in the package specification
25. 2. 12. Using SELECT * in a Cursor
25. 2. 13. Cursor for object table
25. 2. 14. Cursor with order by
25. 2. 15. Cursor rowid
25. 2. 16. Cursor for aggregate function
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.