Oracle系列之游标
涉及到表的处理请参看原表结构与数据 Oracle建表插数据等等
游标:
1、目的
解决“ select * ”返回空、多行记录问题
但凡select,就可能多行结果集,也就需要用游标
2、原理
多行记录放内存中,游标指向第一条
比如,培训:
书桌 —— 库 —— 一大堆书
书包 —— 内存 —— 三本书
上课 —— 游标 —— 一本一本取
3、特点
快
一条一条取,逐行处理
set serveroutput on;--开启显示内容
cursor for循环,显示所有的雇员号
declare
cursor c1 is
select pk_Employee_ID from tb_Employee;
begin
for i in c1 loop
dbms_output.put_line(i.pk_Employee_ID);
end loop;
end;
/
等效于下面这段
declare
begin
for i in (select pk_Employee_ID from tb_Employee) loop
dbms_output.put_line(i.pk_Employee_ID);
end loop;
end;
/
open cursor,显示所有的雇员号
declare
v_empno tb_Employee.pk_Employee_ID%type;
cursor c1 is
select pk_Employee_ID from tb_Employee;
begin
open c1;
loop
fetch c1 into v_empno;
exit when c1%notfound;
dbms_output.put_line(v_empno);
end loop;
close c1;
end;
/
等效于下面这段
declare
v_empno tb_Employee.pk_Employee_ID%type;
cursor c1 is
select pk_Employee_ID from tb_Employee;
begin
open c1;
while c1%isopen loop
fetch c1 into v_empno;
if c1%notfound then
close c1;
end if;
dbms_output.put_line(v_empno);
end loop;
end;
/
简单的显示游标,根据部门号得出部门中雇员的信息
declare
cursor cur is
select *from tb_Employee where deptno = 10;
v_emp cur%rowtype;
begin
if not cur%isopen then
open cur;
end if;
loop
fetch cur into v_emp;
exit when cur%notfound;
dbms_output.put_line('雇员名是:'||v_emp.ename||'工资是:'||v_emp.sal);
end loop;
close cur;
exception
when others then
if cur%isopen then
close cur;
end if;
end;
/
显示游标及游标for循环,查看对应部门的员工号
declare
cursor emp_cursor is
select pk_Employee_ID from tb_Employee
where deptno = 30;
begin
for emp_record in emp_cursor
loop
dbms_output.put_line(emp_record.pk_Employee_ID);
end loop;
end;
/
隐式游标,查看返回的行数
declare
empno tb_Employee.pk_Employee_ID%type;
begin
select pk_Employee_ID into empno -- 对于DML之select into
from tb_Employee
where pk_Employee_ID = 7788;
if sql%found then
dbms_output.put_line('有一行记录'); -- 用sql%found、sql%notfound判断是否返回一行记录
end if;
exception
when no_data_found then
dbms_output.put_line('查询返回空行'); -- 用no_data_found判断是否返回空行记录
when too_many_rows then
dbms_output.put_line('查询返回多行'); -- 用too_many_rows判断是否返回多行记录
end;
/
declare
empno tb_Employee.pk_Employee_ID%type;
begin
select pk_Employee_ID into empno
from tb_Employee
where pk_Employee_ID = 7788;
if sql%rowcount > 0 then
dbms_output.put_line('从表中选择了'||sql%rowcount||'行');
else
dbms_output.put_line('从表中未选择行');
end if;
end;
/
--常见异常
--CURSOR_ALREADY_OPEN
--DUP_VAL_ON_INDEX
--INVALID_CURSOR
--INVALID_NUMBER,当输入的数据有误时,例如类型有错,或触发该例外
--NO_DATA_FOUND
--TOO_MANY_ROWS,如果返回超过了一行,则会触发该错误
--ZERO_DIVIDE,例如2/0语句时,则会触发该错误
--VALUE_ERROR,执行赋值操作时,如果长度不足以容纳实际数据,则会触发该例外
--其他预定义例外
--LOGIN_DENIED,登录错误,如果账号密码不对应会出现这个错误
--NOT_LOGGED_ON,如果用户没有登录就执行dml操作,就会触发该例外
--STORAGE_ERROR,吐过超出了内存空间或是内存被损坏,就会触发该例外
--TIMEOUT_ON_RESOURCE,如果Oracle在等待资源时,出现了超时就会触发该例外
--非预定义例外
--自定义例外
动态游标,输入部门号,显示该部门所有员工姓名和他的工资
declare
type fj_emp_cursor is ref cursor;--定义游标类型fj_emp_cursor
test_cursor fj_emp_cursor;--定义游标变量
v_ename tb_Employee.ename%type;--定义变量
v_sal tb_Employee.sal%type;
begin
open test_cursor for select ename,sal from tb_Employee where deptno=&no;--执行,把test_cursor和一个select结合
loop--循环取出
fetch test_cursor into v_ename,v_sal;
dbms_output.put_line('雇员名是:'||v_ename||',工资是:'||v_sal);
--判断是否test_cursor是否为空
exit when test_cursor%notfound;
end loop;
end;
/
根据输入选项的不同,分别显示员工表、部门表的所有信息
declare
type cur_type is ref cursor; -- 弱类型游标
cur cur_type;
v_emp tb_Employee%rowtype;
v_dept tb_Department%rowtype;
selection varchar2(1) := upper('&选项');
begin
if selection = 'E' then
open cur for
'select * from tb_Employee';
loop
fetch cur into v_emp;
exit when cur%notfound;
dbms_output.put_line(v_emp.ename||':'||v_emp.sal);
end loop;
close cur;
elsif selection = 'newtype' then
open cur for
'select * from tb_Department';
loop
fetch cur into v_dept;
exit when cur%notfound;
dbms_output.put_line(v_dept.pk_Department_ID||':'||v_dept.dname);
end loop;
close cur;
else
null;
end if;
end;
/
在上面的基础上,如果某个雇员的工资低于3000元,就增加1000元
declare
cursor aaa is
select sal from tb_Employee
where sal < 3000 for update;
cursor bbb is
select * from tb_Employee;
begin
for v_sal in aaa
loop
update tb_Employee
set sal = sal + 1000
where current of aaa;
end loop;
for v_emp in bbb
loop
dbms_output.put_line(v_emp.ename||':'||v_emp.sal);
end loop;
end;
/
用强类型游标显示雇员姓名和工资
declare
type record_type is record(name varchar2(10), sal number); -- 记录类型
type cur_type is ref cursor return record_type; -- 强类型游标,将来必须返回record_type类型的结果集
emp_record record_type; -- 记录类型变量
emp_cur cur_type; -- 强类型游标变量
begin
open emp_cur for
select ename, sal from tb_Employee; -- 动态SQL两边的单引号可以省略,必须返回record_type类型的结果集
loop
fetch emp_cur into emp_record; -- 把record_type类型的结果集向record_type类型的变量中填充
exit when emp_cur%notfound;
dbms_output.put_line(emp_record.name||':'||emp_record.sal);
end loop;
close emp_cur;
end;
/
Oracle系列之游标的更多相关文章
- .Net程序员学用Oracle系列(27):PLSQL 之游标、异常和事务
1.游标 1.1.游标属性 1.2.隐式游标 1.3.游标处理及案例 2.异常 2.1.异常类别 2.2.异常函数 2.3.异常处理及案例 3.事务 3.1.开始事务.结束事务 3.2.自治事务 3. ...
- .Net程序员学用Oracle系列(7):视图、函数、过程、包
<.Net程序员学用Oracle系列:导航目录> 本文大纲 1.视图 1.1.创建视图 2.函数 2.1.创建函数 2.2.调用函数 3.过程 3.1.创建过程 3.2.调用过程 4.包 ...
- .Net程序员学用Oracle系列(25):触发器详解
1.触发器理论 1.1.触发器的应用场景 1.2.触发器的类型 1.3.DML 触发器的触发顺序 2.触发器实战 2.1.创建触发器 2.1.1.创建 DML 触发器 2.1.2.创建 DDL 触发器 ...
- .Net程序员学用Oracle系列(26):PLSQL 之类型、变量和结构
1.类型 1.1.属性类型 1.2.记录类型 2.变量 2.1.变量类型 2.2.变量定义 2.3.变量赋值 3.结构 3.1.顺序结构 3.2.选择结构 3.3.循环结构 4.总结 1.类型 在&l ...
- .Net程序员学用Oracle系列(28):PLSQL 之SQL分类和动态SQL
1.SQL 语句分类 1.1.分类方法及类型 1.2.数据定义语言 1.3.数据操纵语言 1.4.其它语句 2.动态 SQL 理论 2.1.动态 SQL 的用途 2.2.动态 SQL 的语法 2.3. ...
- .Net程序员学用Oracle系列(7):视图、函数、存储过程、包
1.视图 1.1.创建.删除及调用普通视图 1.2.高级视图介绍 2.函数 2.1.系统函数介绍 2.2.创建.删除及调用自定义函数 3.存储过程 3.1.创建.修改及删除存储过程 3.2.调用存储过 ...
- 【转】Oracle系列导航目录
.Net程序员学用Oracle系列(1):导航目录 .Net程序员学用Oracle系列(2):准备测试环境 .Net程序员学用Oracle系列(3):数据库编程规范 .Net程序员学用Oracle系列 ...
- (转)oracle 存储过程 带游标作为OUT参数输出
(转)oracle 存储过程 带游标作为OUT参数输出 存储过程返回OUT参数的游标 例子. 包中带过程 要自己定义一个type [cur_name] is ref cursor游标,返回的时候就直接 ...
- oracle 中的游标
oracle 中的游标 通俗易懂的sql代码直接上! --简单的游标使用滴呀 --使用FOR OBJ IN OBJS LOOP ......END LOOP; DECLARE CURSOR C_JOB ...
随机推荐
- 第九篇、UITabbar增加类别用来标红点
1.系统中只有设置bage的方式,设置为nil也是为一个红点,但是很大,并不是我们需要的 2.扩充标红点的方法 (常用于有新的动态提示标志) #import <UIKit/UIKit.h> ...
- UICollectionView的简单使用
ChildModel.h #import <Foundation/Foundation.h> @interface ChildModel : NSObject @property (non ...
- C++里的int 和string类型相互转换
C++不像Java和C#一样在进行数据类型转换时直接调用一些类方法就可以了,使用起来很简单. 一个很简单的例子就是string str=“D:\\”+1+“.txt”;这在Java或者C#里面是可以自 ...
- 九度OJ 1547 出入栈 -- 动态规划
题目地址:http://ac.jobdu.com/problem.php?pid=1547 题目描述: 给定一个初始为空的栈,和n个操作组成的操作序列,每个操作只可能是出栈或者入栈. 要求在操作序列的 ...
- C#基础(六)——值类型与引用类型
CLR支持两种类型:值类型和引用类型. 值类型包括C#的基本类型(用关键字int.char.float等来声明),结构(用struct关键字声明的类型),枚举(用enum关键字声明的类型):而引用类型 ...
- Linux学习笔记2
1.系统引导配置文件 # vi /boot/grub/grub.conf default=0 timeout=5 splashimage=(hd0,0)/grub/splash.xpm. ...
- map遍历的三种基础用法
java中遍历MAP的几种方法 Java代码 Map<String,String> map=new HashMap<String,String>(); map.put(& ...
- OpenCASCADE 基础
OpenCASCADE 基础 转载▼ 一直在用OCC作项目,但这方面的中文资料很少,看来OCC在中国还不是十分普及: 后来,项目中使用OCC和DirectX结合使用,取得了很好的效果: 随着OCC6. ...
- Python设计模式——状体模式
需求,根据当前的时间,返回工作状态 #encoding=utf-8 __author__ = 'kevinlu1010@qq.com' def get_state(hour): if hour> ...
- MVC5 学习笔记2
去除VS Browser Link废代码 在webconfig中添加 <configuration> <appSettings> <add key="vs:En ...