PL/SQL基础(oracle对sql语言的扩展,类似于java语言;前后端互动,后端想知道前端要查信息必须用参数方式捕捉,即用PL/SQL可解决)
1.PL/SQL块结构(类似java类)
DECLARE 声明
...
BEGIN 开始
...
EXCEPTION 异常
...
END; 结束
/ 执行
###dos下,设置服务器输出为打开: set SERVEROUTPUT ON SIZE 10000 (最大为100万)
###保存: save c:oracle\test1.txt
###执行: @ c:oracle\test1.txt
###编辑: deit c:oracle\test1.txt (不给路径默认执行缓冲区的)
###单字段赋值:select name INTO test from aaa where name='001';//其中INTO test是将查出来得结果集赋值于test变量,*只能一个字段数据。
###多字段赋值:select * INTO myrec from aaa where a='jun';//需要用多记录
1.1变量声明内容
* 赋予变量适当名称
* 赋予变量正确数据类型
* 定义变量(标准、记录)
* 控制变量范围
1.2命名规则
* 变量由字符开头
* 可以包括:数字、下划线、'$'、'#'等
* 变量长度范围:1-30
* 大小写不区分
* 变量名不能是系统关键字select if for等
/********************1.3PL/SQL小例子***********************/
declare
x varchar2(100):='abcd';
begin
x:='hello oracle';
dbms_output.put_line('x的值为: '||x);
--dbms_output.put_line('x的值为: '||x);
end;
/
set SERVEROUTPUT ON SIZE 10000 (最大为100万)
l
/
保存: save c:oracle\test1.txt
执行: @ c:oracle\test1.txt
编辑: deit c:oracle\test1.txt (不给路径默认执行缓冲区的)
###注意:不区分大小写、赋值用':=' 、判断用'=' 、连接字符用'||' 、dbms_output包、行注释用'--' 、块注释用'/*sssss*/' 、执行用'\' 、显示缓冲区用'l'
oracle也支持z integer:=230 和 str1 string(100):='hello' 和 num number:=25;
/********************1.3PL/SQL小例子***********************/
2.分支语句(if-then分支、case分支)
/********************2.1PL/SQL小例子--if-then分支***********************/
declare
a number;
b varchar2(10);
begin
a:=2;
if a=1 then
b:='aaaa';
elsif a=2 then
b:='bbbb';
else
b:='cccc';
end if;
dbms_output.put_line('b的值为:'||b);
end;
/
/********************2.1PL/SQL小例子--if-then分支***********************/
/********************2.2PL/SQL小例子--case分支***********************/
declare
a number;
b varchar2(10);
begin
a:=2;
case
when a=1 then b:='a';
when a=2 then b:='b';
when a=3 then b:='c';
else
b:='xxxx';
end case;
dbms_output.put_line('b的值为:'||b);
end;
/
/********************2.2PL/SQL小例子--case分支***********************/
3.循环语句(loop、while-loop、for-loop、GOTO实现)
/********************3.1PL/SQL小例子--loop循环***********************/
declare
x number;
begin
x:=0;
loop
x:=x+1;
if x>=3 then
exit;
end if;
dbms_output.put_line('内: '||x);
end loop;
dbms_output.put_line('外: '||x);
end;
/
/********************3.1PL/SQL小例子--loop循环***********************/
/********************3.2PL/SQL小例子--while-loop循环***********************/
declare
x number;
begin
x:=0;
while x<=3 loop
x:=x+1;
dbms_output.put_line('内: '||x);
end loop;
dbms_output.put_line('外: '||x);
end;
/
/********************3.2PL/SQL小例子--while-loop循环***********************/
/********************3.3PL/SQL小例子--for-loop循环***********************/
begin
for i in 1..5 loop
--for i in reverse 1..5 loop
dbms_output.put_line('i: '||i);
end loop;
dbms_output.put_line('for exit');
end;
/
###注意:oracle的for循环不能实现表达式的递增,只能每次增1或减1。
/********************3.3PL/SQL小例子--for-loop循环***********************/
/********************3.4PL/SQL小例子--GOTO实现循环***********************/
declare
x number;
begin
x:=0;
<<my_xunhuan>>
x:=x+1;
dbms_output.put_line(x);
if x<3 then
GOTO my_xunhuan;
end if;
end;
/
###注意:可以加一个标签<<my_xunhuan>>,用GOTO跳转
/********************3.4PL/SQL小例子--GOTO实现循环***********************/
4.异常处理
/**********************************4.1PL/SQL小例子--系统异常处理********************************************/
declare
test varchar2(20);
begin
select name INTO test from aaa where name='001';
dbms_output.put_line(test);
exception
when NO_DATA_FOUND then
dbms_output.put_line('没有数据,出异常了');
end;
/
###注意:select name INTO test from aaa where name='001';//其中INTO test是将查出来得结果集赋值于test变量,*只能一个字段数据。
NO_DATA_FOUND为系统异常
/**********************************4.1PL/SQL小例子--系统异常处理********************************************/
/*************************************4.2PL/SQL小例子--自定义异常处理*******************************/
declare
hello varchar2(20);
e exception;
begin
select a INTO hello from aaa where a='jun';
if hello<>'B部门' then
raise e;
end if;
dbms_output.put_line(hello);
exception
when e then
dbms_output.put_line('自定义异常好使,不是B部门');
end;
/
###注意:e exception;定义异常变量、raise抛出异常、exception-->when e then引用自己的异常
/*************************************4.2PL/SQL小例子--自定义异常处理*******************************/
5.记录的使用(即复合变量,类似java中list)
/********************5.1PL/SQL小例子--记录使用***********************/
declare
type myrecord is record(
id varchar2(10),
name varchar2(20)
);
junrecord myrecord;
begin
select a,b INTO junrecord from aaa where a='jun';
dbms_output.put_line(junrecord.id ||','|| junrecord.name);
end;
/
###注意:定义记录用type类型、 声明记录junrecord myrecord;//其中junrecord为真正引用时的名、 通过junrecord.id获得记录。*记录可以多个字段数据。
/********************5.1PL/SQL小例子--记录使用***********************/
/********************5.2PL/SQL小例子--记录使用--某一字段与表类型一致***********************/
declare
type myrecord is record(
id aaa.a%type,
name varchar2(20)
);
junrecord myrecord;
begin
select a,b INTO junrecord from aaa where a='jun';
dbms_output.put_line(junrecord.id ||','|| junrecord.name);
end;
/
###注意:让记录myrecord中id的类型与aaa表a字段类型一致。
/********************5.2PL/SQL小例子--记录使用--某一字段与表类型一致***********************/
/********************5.3PL/SQL小例子--记录使用--与表名称类型都一致***********************/
declare
myrec aaa%rowtype;
begin
select * INTO myrec from aaa where a='jun';
dbms_output.put_line(myrec.b ||','|| myrec.a);
end;
/
###注意:myrec aaa%rowtype;我定义的记录与aaa表名称类型都一致 、 myrec.a引用时必须与aaa表名一致
/********************5.3PL/SQL小例子--记录使用--与表名称类型都一致***********************/