Oracle批量查询、删除、更新使用BULK COLLECT提高效率
bulk collect(成批聚合类型)和数组集合type类型is table of 表%rowtype index by binary_integer用法笔记。
例1: 批量查询项目资金账户号为 "320001054663"的房屋账户信息并把它们打印出来 .
declare type acct_table_type is table of my_acct%rowtype index by binary_integer; v_acct_table acct_table_type; begin select * bulk collect into v_acct_table from my_acct where parent_fund='320001054663'; for i in 1..v_acct_table.count loop ---循环打印 dbms_output.put_line('acct:'||v_acct_table(i).fund|| ','||v_acct_table(i).bal||','||v_acct_table(i).real_nmbr); end loop; end;
说明部分:
1. declare 说明以下你要声明的部分
2. type 声明是类型acct_table_typ e 类型的名字
3. is table of 指定是一个集合的表的数组类型, 简单的来说就是一个可以存储一列多行的数据类型 , my_acct指出在哪个表上( 存在的表 ) %rowtype 指在表上的行的数据类型.
4. index by binary_integer 指索引组织类型
5. v_acct_table 定义一个变量来存储集合数据类型
6. bulk collect into 指是一个成批聚合类型, 简单的来说 , 它可以存储一个多行多列存储类型 ,into 后面指定从哪里来 ,
7. v_acct_table.count 用来 v_acct_table 里面的数量
8. (i)表示下标号
例2: 批量更新项目资金账户号为 "320001054663"的房屋账户的余额。
declare type fund_table_type is table of acct.fund%type; type bal_table_type is table of acct.bal%type; v_fund_table fund_table_type; v_bal_table bal_table_type; begin update acct set bal=bal*1000 where parent_fund='320001054663' returning fund,bal bulk collect into v_fund_table,v_bal_table; for i in 1..v_fund_table.count loop dbms_output.put_line('acct:'||v_fund_table(i)||','||v_bal_table(i)); end loop; end;
说明部分:
1. %type和 acct.fund数据类型一样
v_fund_table fund_table_type;
2. v_bal_table bal_table_type; 定义变量来存储它们 .
3. returning 用来指定要返回的部分 ,bulk collect into 成批聚合类型
4. 用for 把它们打印出来
总结 :
- 实验时把set serveroutput on 打开
- 以上的例子的目的主要是为了提高性能. 这里的性能主要指的是速度 .
- 速度指的是批量插入, 更新 , 删除 , 为什么会提高速度呢 ? 提取到的数据都在内存中进行处理, 因为在内存处理比较快 , 这是常识 .
以上所述是小编给大家介绍的oracle批量查询、删除、更新使用bulk collect提高效率,希望对大家有所帮助
上一篇: Oracle高级队列(Advanced Queue)简单实例
下一篇: Oracle触发器实例代码