How INSERTs work with PL/SQL : Insert « 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 » Insert 
24. 10. 3. How INSERTs work with PL/SQL
SQL> CREATE TABLE authors (
  2    id         NUMBER PRIMARY KEY,
  3    first_name VARCHAR2(50),
  4    last_name  VARCHAR2(50)
  5  );

Table created.

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> 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 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> INSERT INTO books (isbn, category, title, num_pages, price, copyright, author1, author2)
  2    VALUES ('72122048', 'Oracle Basics', 'Oracle8i: A Beginner''s Guide', 76544.99199912);

row created.

SQL>
SQL> SET SERVEROUTPUT ON ESCAPE OFF
SQL>
SQL> DECLARE
  2
  3     v_isbn BOOKS.ISBN%TYPE := '12345678';
  4     v_category BOOKS.CATEGORY%TYPE := 'Oracle Server';
  5     v_title BOOKS.TITLE%TYPE := 'Oracle Information Retrieval';
  6
  7  BEGIN
  8
  9     INSERT INTO books (ISBN,CATEGORY,TITLE,NUM_PAGES,PRICE,
 10                        COPYRIGHT,AUTHOR1)
 11     VALUES (v_isbn, v_category, v_title, 45039.95,
 12             20052);
 13
 14     COMMIT;
 15
 16  EXCEPTION
 17     WHEN OTHERS
 18     THEN
 19        DBMS_OUTPUT.PUT_LINE(SQLERRM);
 20        ROLLBACK;
 21  END;
 22  /

PL/SQL procedure successfully completed.

SQL> drop table books;

Table dropped.

SQL>
SQL> drop table authors;

Table dropped.
24. 10. Insert
24. 10. 1. Use PL/SQL to insert data to table
24. 10. 2. Insert data in PL/SQL block
24. 10. 3. How INSERTs work with PL/SQL
24. 10. 4. Use Declared variables in SQL statements
24. 10. 5. Use LOOP to insert data to a table with loop counter variable
24. 10. 6. Add a row to the classes table, using the values of the variables
24. 10. 7. Use PL/SQL variables with insert statement
24. 10. 8. A Safe INSERT Statement
24. 10. 9. Insert by Using RECORD Type Variable
24. 10. 10. Insert values using PL/SQL literals and variables
24. 10. 11. Insert value to product and productcategory with stored procedure
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.