Passing %TYPE and %ROWTYPE as Parameters : Type « PL SQL « Oracle PL / SQL

Home
Oracle PL / SQL
1.Aggregate Functions
2.Analytical Functions
3.Char Functions
4.Constraints
5.Conversion Functions
6.Cursor
7.Data Type
8.Date Timezone
9.Hierarchical Query
10.Index
11.Insert Delete Update
12.Large Objects
13.Numeric Math Functions
14.Object Oriented Database
15.PL SQL
16.Regular Expressions
17.Report Column Page
18.Result Set
19.Select Query
20.Sequence
21.SQL Plus
22.Stored Procedure Function
23.Subquery
24.System Packages
25.System Tables Views
26.Table
27.Table Joins
28.Trigger
29.User Previliege
30.View
31.XML
Oracle PL / SQL » PL SQL » Type 
Passing %TYPE and %ROWTYPE as Parameters
  

SQL>
SQL> create table myTable (
  2    col varchar2(10)
  3  );

Table created.

SQL>
SQL>
SQL> create or replace procedure ADD_ROW(p_col myTable.COL%TYPEis
  2  begin
  3    insert into myTable values (p_col);
  4  end;
  5  /

Procedure created.

SQL>
SQL>
SQL> drop table myTable;

Table dropped.

SQL>
SQL>

   
    
  
Related examples in the same category
1.Declare scalars based on the datatype of a previously declared variable
2.rowtype and type
3.Select only one row for column type variable
4.Creating a procedure and call it
5.Column%type parameter
6.reference table data with tableName.columnName%type
7.Add row to table with tableName.columnName%type
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.