Use cursor variable in update statement : Update « PL SQL Programming « 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 » PL SQL Programming » Update 
24. 11. 5. Use cursor variable in update statement
SQL>
SQL> CREATE TABLE employee
  2  (employee_id         NUMBER(7),
  3   last_name           VARCHAR2(25),
  4   first_name          VARCHAR2(25),
  5   userid              VARCHAR2(8),
  6   start_date          DATE,
  7   comments            VARCHAR2(255),
  8   manager_id          NUMBER(7),
  9   title               VARCHAR2(25),
 10   department_id       NUMBER(7),
 11   salary              NUMBER(112),
 12   commission_pct      NUMBER(42)
 13  );

Table created.

SQL>
SQL> INSERT INTO employee VALUES (1'V''Ben', 'cv',to_date('03-MAR-90 8:30', 'dd-mon-yy hh24:mi'),NULL, NULL, 'PRESIDENT', 502500, NULL);

row created.

SQL> INSERT INTO employee VALUES (2'N''Haidy', 'ln', '08-MAR-90', NULL,1'VP, OPERATIONS', 411450, NULL);

row created.

SQL> INSERT INTO employee VALUES (3'N''Molly', 'mn', '17-JUN-91',NULL, 1'VP, SALES', 311400, NULL);

row created.

SQL> INSERT INTO employee VALUES (4'S''Mark', 'mq', '07-APR-90',NULL, 1'VP, FINANCE', 101450, NULL);

row created.

SQL> INSERT INTO employee VALUES (5'R''AUDRY', 'ar', '04-MAR-90',NULL, 1'VP, ADMINISTRATION', 501550, NULL);

row created.

SQL> INSERT INTO employee VALUES (6'U''MOLLY', 'mu', '18-JAN-91',NULL, 2'WAREHOUSE MANAGER', 411200, NULL);

row created.

SQL> INSERT INTO employee VALUES (7'M''ROBERTA', 'rm', '14-MAY-90',NULL, 2'WAREHOUSE MANAGER', 411250, NULL);

row created.

SQL> INSERT INTO employee VALUES (8'B''BEN', 'ry', '07-APR-90', NULL, 2,'WAREHOUSE MANAGER', 411100, NULL);

row created.

SQL> INSERT INTO employee VALUES (9'C''Jane', 'ac', '09-FEB-92',NULL, 2'WAREHOUSE MANAGER', 411300, NULL);

row created.

SQL> INSERT INTO employee VALUES (10'H''Mart', 'mh', '27-FEB-91', NULL, 2,'WAREHOUSE MANAGER', 411307, NULL);

row created.

SQL>
SQL>
SQL>
SQL> DECLARE
  2     CURSOR empCursor IS
  3        SELECT employee_id, department_id, NVL(salary,0salary, ROWID
  4        FROM   employee;
  5     lv_record_num PLS_INTEGER DEFAULT 0;
  6  BEGIN
  7     FOR empRecord IN empCursor LOOP
  8        lv_record_num := lv_record_num + 1;
  9       IF empRecord.department_id = 10 OR
 10          empRecord.department_id = 41 THEN
 11           IF empRecord.salary > 1000 THEN
 12              empRecord.salary := empRecord.salary * 1.05;
 13           ELSE
 14              empRecord.salary := empRecord.salary * 1.10;
 15           END IF;
 16        ELSIF empRecord.department_id = 31 THEN
 17           IF empRecord.salary > 1400 THEN
 18              empRecord.salary := empRecord.salary * 1.05;
 19           ELSE
 20              empRecord.salary := empRecord.salary * 1.10;
 21           END IF;
 22        ELSIF empRecord.department_id = 50 THEN
 23           IF empRecord.salary > 2000 THEN
 24              empRecord.salary := empRecord.salary * 1.05;
 25           ELSE
 26              empRecord.salary := empRecord.salary * 1.10;
 27           END IF;
 28        END IF;
 29        UPDATE employee
 30        SET    salary = empRecord.salary
 31        WHERE  rowid  = empRecord.ROWID;
 32     DBMS_OUTPUT.PUT_LINE(' Employee: '   || empRecord.employee_id  ||
 33        ' Department: ' || empRecord.department_id ||' New Salary: ' ||
 34        to_char(empRecord.salary, '$999,999.99'));
 35     END LOOP;
 36     COMMIT;
 37     DBMS_OUTPUT.PUT_LINE('Update Process Complete. ' ||
 38        lv_record_num || ' Records Processed.');
 39     EXCEPTION
 40        WHEN OTHERS THEN
 41           DBMS_OUTPUT.PUT_LINE('Error on Record ' || lv_record_num ||
 42           ': Update Process Aborted.');
 43           ROLLBACK;
 44  END;
 45  /
Employee: Department: 50 New Salary:    $2,625.00
Employee: Department: 41 New Salary:    $1,522.50
Employee: Department: 31 New Salary:    $1,540.00
Employee: Department: 10 New Salary:    $1,522.50
Employee: Department: 50 New Salary:    $1,705.00
Employee: Department: 41 New Salary:    $1,260.00
Employee: Department: 41 New Salary:    $1,312.50
Employee: Department: 41 New Salary:    $1,155.00
Employee: Department: 41 New Salary:    $1,365.00
Employee: 10 Department: 41 New Salary:    $1,372.35
Update Process Complete. 10 Records Processed.

PL/SQL procedure successfully completed.

SQL>
SQL>
SQL> drop table employee;

Table dropped.

SQL>
SQL>
24. 11. Update
24. 11. 1. How DML works with PL/SQL
24. 11. 2. UPDATE statement with variable
24. 11. 3. Update value and return affected row count
24. 11. 4. Use update statement in stored procedure
24. 11. 5. Use cursor variable in update statement
24. 11. 6. Procedure for adjust salary
24. 11. 7. Update returning into
24. 11. 8. Update salary with stored procedure
24. 11. 9. Update table and return if success
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.