Oracle游标/异常/过程/函数
1、基础语法
1.1 声明变量赋值并输出
1.2 %type、%rowtype、select...into
1.3 只可以增删改
2、 PLSQL流程控制
--if判断---
--if else判断---
--if elsif else判断--
--loop循环,注意推出exit是退出循环,而不是推出整个代码块
-- while循环
-- for循环,注意不需要声明变量
3、PLSQL异常处理
4、 PLSQL游标
4.1 游标定义
--游标的定义 declare v_title books.title%type; --声明为和数据库中数据相同的类型 v_retail books.retail%type; cursor book_cursor is --把游标看作一个集合 select title, retail form books natural join orderitems where order=1012; Begin open book_cursor --打开游标 loop fetch books_cursor into v_title, v_ratial; --通过循坏提取数据 exit when book_cursor%notfound --如果没有数据就退出循坏 dbms_output.line('book title:' || v_title || ',price:' || v_retail); end loop; close book_cursor; --关闭游标 end; --第二种游标的定义方式,用变量控制结果集的数量。 declare v_id binary_integer; cursor c_student is select * from book where id > v_id; begin v_id:=10; open c_student; close c_student; end; --第三种游标的定义方式,带参数的游标,用的最多。 declare cursor c_student(v_id binary_integer) is select * from book where id>v_id; begin open c_student(10); close c_student; end;
4.2 游标的使用
4.3 游标实例:
1、loop方式遍历游标 declare v_bookname varchar2(100); --带参数的游标,把游标当做一个集合(只有bookname的集合) cursor c_book(i_id number) is select bookname from book where id = i_id; begin Open c_book(i_id); --打开游标 Loop Fetch c_book into v_bookname; --获取数据 exit when c_student%notfound; update book set price = '33' where bookname = v_bookname; --如果该id对应的bookname没值则更新 End Loop; Close c_book; --关闭游标 end; 或 declare v_bookname varchar2(100); cursor c_book(i_id number) is select bookname from book where id = i_id; begin Open c_book(i_id); Fetch c_book into v_bookname; While c_book%Found Loop update book set price = '33' where bookname = v_bookname; Fetch c_book into v_bookname; End Loop; Close c_book; end; 2、while循环遍历游标,注意,第一次游标刚打开就fetch,%found为null,进不去循环 解决方法:while nvl(c_student%found,true) loop declare v_bookname varchar2(100); cursor c_book(i_id number) is select bookname from book where id = i_id; begin Open c_book(i_id); while nvl(c_book%found,true) --或这种写法:while c_book%found is null or c_book%found loop Fetch c_book into v_bookname; update book set price = '33' where bookname = v_bookname; End Loop; Close c_book; end; 3、 for循环遍历 - 最简单,用的最多,不需要 声明v_student,Open和Close游标和fetch操作(不用打开游标和关闭游标,实现遍历游标最高效方式) declare cursor c_book(i_id number) is select bookname from book where id = i_id; begin for cur in c_book(i_id) --直接将入参i_id传入cursor即可 loop update book set price = '53' where bookname = cur.bookname; end loop; end;
5、Oracle存储过程
存储过程---就像数据库中运行方法(函数),和C#方法一样,由存储过程名/存储过程参数组成,可以有返回结果。
优点:
-- 执行速度更快(在数据库中保存的存储过程语句都是编译过的)
-- 允许模块化程序设计(类似方法的复用)
-- 提高系统安全性(防止sql注入)
-- 减少网络流通量(只要传输存储过程的名称)
一般,以sp_、xp_开头的都是系统存储过程,用户自定义存储过程usp_
总结:输入参数 in或缺省、输出参数out,不带数据长度; 还有in out类型;
对于in类型参数:不能赋值,只能用他给变量赋值,是只读的; 如果后面加了default则在调用用可以不用传值;
对于out类型参数:调用时不用赋值,在过程中会被赋值;
对于in out 类型参数:既可以赋值,也可以改变值;
对过程的调用没有返回值,不能用变量去接收,它没有返回值;
过程是一个完整的sql,函数是一个合法的表达式
IN,OUT,IN OUT是形参的模式。若省略,则为IN模式。
IN模式的形参只能将实参传递给形参,进入函数内部,但只能读不能写,函数返回时实参的值不变。
OUT模式的形参会忽略调用时的实参值(或说该形参的初始值总是NULL),但在函数内部可以被读或写,函数返回时形参的值会赋予给实参。
IN OUT具有前两种模式的特性,即调用时,实参的值总是传递给形参,结束时,形参的值传递给实参。
调用时,对于IN模式的实参可以是常量或变量,但对于OUT和IN OUT模式的实参必须是变量。
5.1 存储过程案例
create table BOOK ( ID VARCHAR2(10) not null, BOOKNAME VARCHAR2(10) not null, PRICE VARCHAR2(10) not null, CID VARCHAR2(10) not null ); -- %rowcount是SQL的属性表示影响了多少条记录 1、insert------------------------------------------------------------------------------------------------- create or replace procedure say_hello( i_name in varchar2, --输入参数,不带类型长度 o_result_msg out varchar2 --输出参数,不带类型长度 ) as --在as和begin之间定义变量,需要声明类型长度 v_price varchar2(100); e_myException exception; begin insert into book(id,bookname,price) values (1,2,3); --这里会报错,下面的不再继续执行 o_result_msg := 'success'; exception --报错误之后,执行错误的地方 when others then rollback; o_result_msg := substr(sqlcode, 1, 200); --返回错误码 end; --调用过程-------------------------------------------------- declare i_name varchar2(100) := 'dd'; o_result_msg varchar2(100); begin say_hello(i_name,o_result_msg); --注意存储过程没有返回值 dbms_output.put_line(o_result_msg); end; 2、update/delete------------------------------------------------------------------------------------ create or replace procedure say_hello( i_name in varchar2, o_result_msg out varchar2 ) as v_price varchar2(100); e_myException exception; begin update book set price = '55' where bookname = i_name; delete from book where bookname = i_name; if sql%notfound then raise e_myException; end if; o_result_msg := 'success'; exception when e_myException then rollback; o_result_msg := 'update or delete dail'; end; 3、select------------------------------------------------------------------------------------------------------------------- create or replace procedure say_hello( i_name in varchar2, o_result_msg out varchar2 ) as v_price varchar2(100); e_myException exception; begin select price into v_price from book where bookname = i_name; o_result_msg := 'success'; exception when no_data_found then rollback; o_result_msg := 'select into dail'; end;
5.2 带一个参数的存储过程
5.3 多个参数的存储过程
5.4 in out参数,既赋值又取值
5.5 对存储过程入参赋缺省值
6、 PLSQL中的function
--1、创建函数:获取某部门的工资总和 create or replace function get_salary( dept_no number, emp_count out number) return number is v_sum number; begin select sum(salary), count(*) into v_sum, emp_count from emp wher emp.id=dept_no; return v_sum; exception when no_data_found then dbms_output.put_line('你需要的数据不存在!'); when others then dbms_output.put_line(sqlcode || '----' || sqlerrm); end get_salary; --2、函数的调用 --2.1第一种:位置表示法 declare v_num number; v_sum number; begin v_sum := get_salary(10, v_num); dbms_output.put_line('部门号为:10的工资总和:'|| v_sum || ', 人数为:'||v_num); end; --2.2 名称表示法 declare v_num number; v_sum number; begin v_sum := get_salary(emp_count => v_num, dept_no => 10); dbms_output.put_line('部门号为:10的工资总和:'||v_sum ||',人数为:'||v_num); end;
7、包
--包头(定义了一个函数和一个过程) Create or replace package pkg_huxiaohong_product IS procedure update_sal(e_name varchar2, newsal number); function ann_income(e_name varchar2) return number; END; --包体(实现上面的函数和过程) create or replace package body pkg_huxiaohong_product IS --过程,没有返回值 proceducre update_sal(e_name varchar2, newsal number) IS Begin update emp1 set sal = newsal where ename = e_name; End; --函数,有返回值 function ann_income(e_name varchar2) return number IS annsal number; Begin select sal * 12 + nvl(common,0) into annsal form emp1 where ename = e_name; return annsal; End; End; --调用包 --共有元素调用:包名,元素名 --过程调用: sql>exec pkg_huxiaohong_product.update_sal('scott', 1200); --函数调用: declare v_annsal number(7,2); Begin v_annsal:=pkg_huxiaohong_product.ann_income('scott'); dbms_output.put_line('年薪为:'|| v_annsal); End; -- 删除包 drop package[body[user.] pkg_huxiaohong_product
7.1 记录
--2、声明记录类型 declare type emp_record is record( --声明一个记录类型 v_name emp.ename%type, --动态获取变量的类型 ); v_emp_record emp_record; --定义一个记录类型的成员变量 begin select ename into v_emp_record from emp ; dbms_output.put_line('姓名是'||v_name); end;
上一篇: 26:字符串最大跨距
下一篇: 字符串分割 split