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

2016-02-19 10:00 4 1 收藏

今天天气好晴朗处处好风光,好天气好开始,图老师又来和大家分享啦。下面给大家推荐oracle下巧用bulk collect实现cursor批量fetch的sql语句,希望大家看完后也有个好心情,快快行动吧!

【 tulaoshi.com - 编程语言 】

在一般的情况下,使用批量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; 
 

来源:http://www.tulaoshi.com/n/20160219/1592958.html

延伸阅读
说明:复制表(只复制结构,源表名:a 新表名:b) select * into b from a where 11 说明:拷贝表(拷贝数据,源表名:a 目标表名:b) insert into b(a, b, c) select d,e,f from b; 说明:显示文章、提交人和最后回复时间 select a.title,a.username,b.adddate from table a,(select max(adddate) adddate from table where table.title=a.title...
SQL的意思是结构化查询语言,其主要功能是同各种数据库建立联系,进行沟通.查询指的是对存储于SQL的数据的请求。查询要完成的任务是:将 Select 语句的结果集提供给用户。Select 语句从 SQL 中检索出数据,然后以一个或多个结果集的形式将其返回给用户。  ======================================================...
在诊断数据库系统性能的过程中,总会涉及到跟踪效率低下的sql语句,Oracle数据库10g包含一种新的实用程序trcsess,它可以让您基于会话ID或模块名称之类的条件,有选择地从大量跟踪文件中抽取出跟踪数据,并将它们保存到一个文件中。该实用程序在共享服务器配置中特别有用,因为调度程序可能把每一个用户请求传递给不同的共享服务器进程,从而为...
新建表: create table [表名] ( [自动编号字段] int IDENTITY (1,1) PRIMARY KEY , [字段1] nVarChar(50) default '默认值' null , [字段2] ntext null , [字段3] datetime, [字段4] money null , [字段5] int defaul...
标签: SQLServer
1:普通SQL语句可以用Exec执行 eg:   Select * from tableName       Exec('select * from tableName')       sp_executesql N'select * from tableName'    -- 请注意字符串前一定要加N 2:字段名,表名,数据库名之类作为变量时,必须用动态SQL eg:   ...

经验教程

716

收藏

94
微博分享 QQ分享 QQ空间 手机页面 收藏网站 回到头部