Variable Definition Statements

This section describes the declaration of variables in the PL/SQL and the scope of this variable in codes.

Variable Declaration

For details about the variable declaration syntax, see Figure 1.

Figure 1 declare_variable::=

The above syntax diagram is explained as follows:

  • variable_name indicates the name of a variable.
  • type indicates the type of a variable.
  • value indicates the initial value of the variable. (If the initial value is not given, NULL is taken as the initial value.) value can also be an expression.

Examples

openGauss=# DECLARE
    emp_id  INTEGER := 7788; -- Define a variable and assign a value to it.
BEGIN
    emp_id := 5*7784; -- Assign a value to the variable.
END;
/

In addition to the declaration of basic variable types, %TYPE and %ROWTYPE can be used to declare variables related to table columns or table structures.

%TYPE Attribute

%TYPE declares a variable to be of the same data type as a previously declared variable (for example, a column in a table). For example, if you want to define a my_name variable whose data type is the same as the data type of the firstname column in the employee table, you can define the variable as follows:

my_name employee.firstname%TYPE

In this way, you can declare my_name without the need of knowing the data type of firstname in employee, and the data type of my_name can be automatically updated when the data type of firstname changes.

TYPE employee_record is record (id INTEGER, firstname VARCHAR2(20));
my_employee employee_record;
my_id my_employee.id%TYPE;
my_id_copy my_id%TYPE;

%ROWTYPE Attribute

%ROWTYPE declares data types of a set of data. It stores a row of table data or results fetched from a cursor. For example, if you want to define a set of data with the same column names and column data types as the employee table, you can define the data as follows:

my_employee employee%ROWTYPE

The attribute can also be used on the cursor. The column names and column data types of this set of data are the same as those of the employee table. For the cursor in a package, %ROWTYPE can be omitted. %TYPE can also reference the type of a column in the cursor. You can define the data as follows:

cursor cur is select * from employee;
my_employee cur%ROWTYPE
my_name cur.firstname%TYPE
my_employee2 cur -- For the cursor defined in a package, %ROWTYPE can be omitted.

ROWTYPE for cursor supports the following features:

  • Turn on the precompile switch can detect whether the table involved in the cursor exists or not, and whether the corresponding columns in the table exist or not, so that it can throw an error when creating a function, procedure, or package.
  • Turn off the precompile switch can create functions, stored procedures, and packages successfully regardless of the existence of the cursor's table or columns in the table.
  • Variables defined by ROWTYPE can be assigned values even if there is no data in the table involved in the cursor.
  • if a column table involved in the cursor has a default value, ROWTYPE only gets the type and does not inherit the default value and constraints.
  • Support for data insertion in PL using ROWTYPE non-virtualized columns.
  • Re-query the table structure involved in the cursor each time when executing functions, procedures, or packages to accommodate changes in the table structure.
  • Can assign a value to a RECORD type variable using the variables defined by the cur%ROWTYPE.
  • Can assign default values to variables defined by the cur%ROWTYPE.

Test case:

-- Turn on the precompile switch
set behavior_compat_options='allow_procedure_compile_check';

-- Creating the table used by the cursor and inserting data
create table int4_table(a NUMBER, b VARCHAR2(5));
insert into int4_table(a, b) values(3,'johan');
create table int_table(a NUMBER, d NUMBER, b VARCHAR2(5));
insert into int_table(a, d, b) values(3, 6,'johan');

-- Creating package
create or replace package pck1 is
cursor cur1 is select * from int4_table;
var1 cur1%rowtype:=(3, 'ada');-- Use rowtype to get the actual type of the cursor and define a public variable
procedure ppp1;
procedure ppp2(a cur1%rowtype);
end pck1;
/

-- Creating package body
create or replace package body pck1 is
procedure ppp1() is
cursor cur2 is select * from int_table;
begin
open cur2;
fetch cur2 into var1;-- when var1 and cursor cur2 have different query lengths throw error
ppp2(var1);
raise info '%', var1.a;
end;

procedure ppp2(a cur1%rowtype) is
begin
    raise info '%', a.a;
end;
end pck1;
/

openGauss=# call pck1.ppp1();-- var1 has 2 columns that do not match the length of the cursor cur2 query result
ERROR:  number of source and target fields in assignment does not match
DETAIL:  strict_multi_assignment check is active.
HINT:  Make sure the query returns the exact list of columns.
CONTEXT:  PL/pgSQL function ppp1() line 4 at FETCH

openGauss=# ALTER TABLE int_table DROP COLUMN d;-- Delete 1 column of the table
ALTER TABLE

openGauss=# call pck1.ppp1();-- Success
INFO:  3
CONTEXT:  SQL statement "CALL ppp2(var1)"
PL/pgSQL function ppp1() line 5 at PERFORM
INFO:  3
 ppp1
------

(1 row)

NOTICE:

  • %TYPE cannot reference the type of a composite variable or a record variable, a column type of the record type, a column type of a variable of the cross-package composite type, or a column type of a cursor variable of the cross-package type.
  • %ROWTYPE cannot reference the type of a composite variable or a record variable and the type of a cross-package cursor.
  • %ROWTYPE cannot reference nested cursors.

Scope of a Variable

The scope of a variable indicates the accessibility and availability of the variable in code block. In other words, a variable takes effect only within its scope.

  • To define a function scope, a variable must declare and create a BEGIN-END block in the declaration section. The necessity of such declaration is also determined by block structure, which requires that a variable has different scopes and lifetime during a process.
  • A variable can be defined multiple times in different scopes, and inner definition can cover outer one.
  • A variable defined in an outer block can also be used in a nested block. However, the outer block cannot access variables in the nested block.
Feedback
编组 3备份
    openGauss 2024-11-22 00:52:56
    cancel