当前位置: 首页 > 图文教程 > 数据库 > Oracle > oracle下巧用bulk collect实现cursor批量fetch的sql语句

Oracle
理解SCN与TimeStamp的相互转换
用OMS来实现Oracle数据备份的方法
详细介绍Oracle数据库的启动和关闭
Oracle数据库重做日志文件丢失后的恢复
检测Oracle的可用性和表空间容量
oracle的long类型字段的应用
把数据从MySQL迁到Oracle的几点注意事项
没有Oracle客户端系统移植的三种方法
Oracle监听器服务不能启动的7步解决法
Oracle 10g的自动段空间管理(ASSM)
Oracle运行速度与效率高的秘密
Oracle实现自增型ID和删除重复记录
Oracle数据库存储过程的6个问题
Oracle 10G里手工建库的全过程
Oracle 10g手工创建数据库个人经验
redhat linux 下安装oracle 10g 的方法
Oracle静态注册和动态注册
Oracle数据更改后出错
JSP+Oracle简便通用的表单数据存储处理方法
Oracle 10g实用程序trcsess:跟踪sql语句

Oracle 中的 oracle下巧用bulk collect实现cursor批量fetch的sql语句


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-13   浏览: 68 ::
收藏到网摘: n/a

oracle下巧用bulk collect实现cursor批量fetch的sql语句,使用oracel的朋友可以试试了 在一般的情况下,使用批量fetch的几率并不是很多,但是Oracle提供了这个功能我们最好能熟悉一下,说不定什么时候会用上它。

复制代码 代码如下:

declare
cursor c1 is select * from t_depart;
v_depart t_depart%rowtype ;
type v_code_type is table of t_depart.depart_code%type ;
v_code v_code_type ;
type v_name_type is table of t_depart.depart_name%type ;
v_name v_name_type ;
begin
open c1;
fetch c1 bulk collect into v_code , v_name ;
for i in 1..v_code.count loop
dbms_output.put_line(v_code(i)||' '||v_name(i));
end loop;
close c1;
end;

通过上面的这个列子大家可以发现如果列很多的话,为每一列定义一个集合似乎有些繁琐,可以把集合和%rowtype结合起来一起使用简化程序!
复制代码 代码如下:

declare
cursor c1 is select * from t_depart;
type v_depart_type is table of t_depart%rowtype ;
v_depart v_depart_type ;
begin
open c1;
fetch c1 bulk collect into v_depart ;
for i in 1..v_depart.count loop
dbms_output.put_line(v_depart(i).depart_code||' '||
v_depart(i).depart_name);
end loop;
close c1;
end;

在输出结果时既可以使用集合的count属性和可以使用first和last,在引用%rowtype类型的内容时还有一个需要注意的地方是v_depart(i).depart_code,而不是v_depart.depart_code(i),当然没有这样的写法,即使有意义也并不一样。
复制代码 代码如下:

declare
cursor c1 is select * from t_depart;
type v_depart_type is table of t_depart%rowtype ;
v_depart v_depart_type ;
begin
open c1;
fetch c1 bulk collect into v_depart ;
for i in v_depart.first..v_depart.last loop
dbms_output.put_line(v_depart(i).depart_code||' '||
v_depart(i).depart_name);
end loop;
close c1;
end;