oracle下巧用bulk collect实现cursor批量fetch的sql语句
begin
复制代码 代码如下:
close c1;close c1;
dbms_output.put_line(v_depart(i).depart_code||' '||
begin
declare
declare
open c1;
type v_code_type is table of t_depart.depart_code%type ;
type v_name_type is table of t_depart.depart_name%type ;
dbms_output.put_line(v_depart(i).depart_code||' '||
type v_depart_type is table of t_depart%rowtype ;
v_depart(i).depart_name);
end loop;
fetch c1 bulk collect into v_code , v_name ;
type v_depart_type is table of t_depart%rowtype ;
end;
v_depart v_depart_type ;
复制代码 代码如下:
declare
for i in 1..v_code.count loop
v_depart(i).depart_name);
open c1;
fetch c1 bulk collect into v_depart ;
end;
end loop;
cursor c1 is select * from t_depart;
通过上面的这个列子大家可以发现如果列很多的话,为每一列定义一个集合似乎有些繁琐,可以把集合和%rowtype结合起来一起使用简化程序!
在一般的情况下,使用批量fetch的几率并不是很多,但是Oracle提供了这个功能我们最好能熟悉一下,说不定什么时候会用上它。
复制代码 代码如下:
v_depart t_depart%rowtype ;fetch c1 bulk collect into v_depart ;
close c1;
cursor c1 is select * from t_depart;
v_name v_name_type ;
for i in v_depart.first..v_depart.last loop
dbms_output.put_line(v_code(i)||' '||v_name(i));
v_depart v_depart_type ;
open c1;
begin
end loop;
在输出结果时既可以使用集合的count属性和可以使用first和last,在引用%rowtype类型的内容时还有一个需要注意的地方是v_depart(i).depart_code,而不是v_depart.depart_code(i),当然没有这样的写法,即使有意义也并不一样。
v_code v_code_type ;
for i in 1..v_depart.count loop
cursor c1 is select * from t_depart;
本站内容来源于网络,如有侵权请与我们联系,我们会及时删除,我们深感抱歉!
注:本站所有信息仅供用于网络技术学习参考,学习中请遵循相关法律法规!
本文地址: https://www.juheyunku.com/sql/oracle/2340.shtml
相关文章
热门TAG
命令 外链 企业网站 白帽 php 织梦教程 dedecms修改内容 javascript 织梦 功能 标签 调用 详解 技巧 权重 服务器 网站流量 Dedecms 织梦cms HTML tags标签 python jquery教程 jquery windows 蜘蛛 搜索引擎 网站收录 JSP 实例解析最新文章
-
OracleRAC的五大优势及其劣
时间:2021-01-05
-
Oracle优化器 自适应执行计
时间:2021-01-05
-
Oracle行内链接不会引起U
时间:2021-01-05
-
Window下Oracle Database 11g 发行
时间:2020-12-29
-
Oracle如何实现like多个值的
时间:2020-12-29
-
maven添加oracle依赖失败问题
时间:2020-12-29
-
OracleRAC基本概念及入门
时间:2020-12-29
-
Azure File Storage 基本用法
时间:2020-12-26
热门文章
-
Azure Queue Storage 基本用法 Azure Storage 之
时间:2020-12-26
-
Oracle存储过程编程详解
时间:2020-12-07
-
win10下oracle 11g安装图文教程
时间:2020-12-25
-
oracle 数据库学习 基本结构介绍
时间:2020-12-13
-
Azure File Storage 基本用法 Azure Storage 之 F
时间:2020-12-26
-
windows使用sqlpus连接oracle 数据库的教程图
时间:2020-12-25
-
Window下Oracle Database 11g 发行版2安装教程
时间:2020-12-29
-
Oracle解锁的方式介绍
时间:2020-12-14
-
linux下oracle设置开机自启动实现方法
时间:2020-12-13
-
Oracle学习记录之使用自定义函数和触发器
时间:2020-12-07
