――――――――――――――――――――――――――――――――――――― declare age number(3):=26; begin commit; end; ――――――――――――――――――――――――――――――――――――― 【配套程序位置】:第9章/basicdatatypedefine.sql。
2. 定义记录类型变量 很多结构化程序设计语言都提供了记录类型的数据类型,在PL/SQL中,也支持将多个基本数据类型捆绑在一起的记录数据类型。 下面的程序代码定义了名为myrecord的记录类型,该记录类型由整数型的myrecordnumber和日期型的mycurrentdate基本类型变量组成,srecord是该类型的变量,引用记录型变量的方法是“记录变量名.基本类型变量名”。 程序的执行部分从tempuser.testtable数据表中提取recordnumber字段为68的记录的内容,存放在srecord复合变量里,然后输出srecord.mycurrentdate的值,实际上就是数据表中相应记录的currentdate的值。 在【SQLPlus Worksheet】中执行下列PL/SQL程序,执行结果如图9.9所示。 ――――――――――――――――――――――――――――――――――――― set serveroutput on declare type myrecord is record( myrecordnumber int, mycurrentdate date); srecord myrecord; begin select * into srecord from tempuser.testtable where recordnumber=68; dbms_output.put_line(srecord.mycurrentdate); end; ――――――――――――――――――――――――――――――――――――― 【配套程序位置】:第9章/ recordtypedefine.sql。 在PL/SQL程序中,select语句总是和into配合使用,into子句后面就是要被赋值的变量。
3. 使用%rowtype定义变量 使用%type可以使变量获得字段的数据类型,使用%rowtype可以使变量获得整个记录的数据类型。比较两者定义的不同:变量名 数据表.列名%type,变量名 数据表%rowtype。 在【SQLPlus Worksheet】中执行下列PL/SQL程序,该程序定义了名为mytable的复合类型变量,与testtable数据表结构相同,执行结果如图9.10所示。 ――――――――――――――――――――――――――――――――――――― Declare mytable testtable%rowtype; begin select * into mytable from tempuser.testtable where recordnumber=88; dbms_output.put_line(mytable.currentdate); end; ―――――――――――――――――――――――――――――――――――――
【配套程序位置】:第9章/ rowtypedefine.sql。 4. 定义一维表类型变量 表类型变量和数据表是有区别的,定义表类型变量的语法如下: ――――――――――――――――――――――――――――――――――――― type 表类型 is table of 类型 index by binary_integer; 表变量名 表类型; ――――――――――――――――――――――――――――――――――――― 类型可以是前面的类型定义,index by binary_integer子句代表以符号整数为索引,这样访问表类型变量中的数据方法就是“表变量名(索引符号整数)”。
在【SQLPlus Worksheet】中执行下列PL/SQL程序,该程序定义了名为tabletype1和tabletype2的两个一维表类型,相当于一维数组。table1和table2分别是两种表类型变量。 执行结果如图9.11所示。 ――――――――――――――――――――――――――――――――――――― Declare type tabletype1 is table of varchar2(4) index by binary_integer; type tabletype2 is table of tempuser.testtable.recordnumber%type index by binary_integer; table1 tabletype1; table2 tabletype2; begin table1(1):='大学'; table1(2):='大专'; table2(1):=88; table2(2):=55; dbms_output.put_line(table1(1)table2(1)); dbms_output.put_line(table1(2)table2(2)); end; ――――――――――――――――――――――――――――――――――――― 【配套程序位置】:第9章/ tabletypedefine1.sql。
“”是连接字符串的运算符。 5. 定义多维表类型变量 在【SQLPlus Worksheet】中执行下列PL/SQL程序,该程序定义了名为tabletype1的多维表类型,相当于多维数组,table1是多维表类型变量,将数据表tempuser.testtable中recordnumber为60的记录提取出来存放在table1中并显示。执行结果如图9.12所示。 ――――――――――――――――――――――――――――――――――――― Declare type tabletype1 is table of testtable%rowtype index by binary_integer; table1 tabletype1; begin select * into table1(60) from tempuser.testtable where recordnumber=60; dbms_output.put_line(table1(60).recordnumbertable1(60).currentdate); end; ――――――――――――――――――――――――――――――――――――― 【配套程序位置】:第9章/ tabletypedefine2.sql。
在定义好的表类型变量里,可以使用count、delete、first、last、next、exists和PRior等属性进行操作,使用方法为“表变量名.属性”,返回的是数字。 在【SQLPlus Worksheet】中执行下列PL/SQL程序,该程序定义了名为tabletype1的一维表类型,table1是一维表类型变量,变量中插入3个数据,综合使用了表变量属性。 执行结果如图9.13所示。 ――――――――――――――――――――――――――――――――――――― set serveroutput on Declare type tabletype1 is table of varchar2(9) index by binary_integer; table1 tabletype1; begin table1(1):='成都市'; table1(2):='北京市'; table1(3):='青岛市'; dbms_output.put_line('总记录数:'to_char(table1.count)); dbms_output.put_line('第一条记录:'table1.first); dbms_output.put_line('最后条记录:'table1.last); dbms_output.put_line('第二条的前一条记录:'table1.prior(2)); dbms_output.put_line('第二条的后一条记录:'table1.next(2)); end; ――――――――――――――――――――――――――――――――――――― 【配套程序位置】:第9章/ tabletypedefine3.sql。
表达式
变量、常量经常需要组成各种表达式来进行运算,下面介绍在PL/SQL中常见表达式的运算规则。 1. 数值表达式 PL/SQL程序中的数值表达式是由数值型常数、变量、函数和算术运算符组成的,可以使用的算术运算符包括+(加法)、-(减法)、*(乘法)、/(除法)和**(乘方)等。 在【SQLPlus Worksheet】中执行下列PL/SQL程序,该程序定义了名为result的整数型变量,计算的是10+3*4-20+5**2的值,理论结果应该是27。执行结果如图9.14所示。 ――――――――――――――――――――――――――――――――――――― set serveroutput on Declare result integer; begin result:=10+3*4-20+5**2; dbms_output.put_line('运算结果是:'to_char(result)); end; ――――――――――――――――――――――――――――――――――――― 【配套程序位置】:第9章/ datacompute.sql。