8. 表类型定义:type 变量名 is table of 类型 index by binary_integer;
游标类型:type 游标变量名 is ref cursor;
记录类型: type 类型名 is record(变量1 ,.........)
数组类型: type 数组名 is varray of 类型
二.动态SQL小结:
9. 如果select into,fetch into 或returning into 子句引用了一个集合,应该使用bulk collect 子句进行合并
1)动态SQL是指DDL和不确定的DML(即带参数的DML)
2)绑定参数列表为输入参数列表,即其类型为in类型,在运行时刻与动态SQL语句中的参数(实际上占位符,可以理解为函数里面的形式参数)进行绑定。
3)输出参数列表为动态SQL语句执行后返回的参数列表。
4)由于动态SQL是在运行时刻进行确定的,所以相对于静态而言,其更多的会损失一些系统性能来换取其灵活性。
举例子:
create or replace procedure find_info(p_id number) as
v_name varchar2(10);
v_salary number;
begin
execute immediate ‘
select name,salary from emp
where id=:1‘
using p_id
returning into v_name,v_salary; --动态SQL为查询语句
dbms_output.put_line(v_name ||‘的收入为:‘||to_char(v_salary));
exception
when others then
dbms_output.put_line(‘找不到相应数据‘);
end find_info;
注意:在过程二中的动态SQL语句使用了占位符“:1“,其实它相当于函数的形式参数,使用”:“作为前缀,
然后使用using语句将p_id在运行时刻将:1给替换掉,这里p_id相当于函数里的实参。
另外过程三中打开的游标为动态游标,它也属于动态SQL的范畴,其整个编译和开发的过程与execute immediate执行的过程很类似,这里就不在赘述了。
三.这里是使用forall来进行批联编,这里将批联编处理的情形作一个小结:
1) 如果一个循环内执行了insert,delete,update等语句引用了集合元素,那么可以将其移动到一个forall语句中。
2) 如果select into,fetch into 或returning into 子句引用了一个集合,应该使用bulk collect 子句进行合并。
3) 如有可能,应该使用主机数组来实现在程序和数据库服务器之间传递参数。
举例子:
declare
type num_list is varray(20) of number;
v_id num_list :=num_list(100,101);
begin
...
forall i in v_id.first .. v_id.last loop
...
execute immediate ‘update emp
set =salary*1.2
where id=:1 ‘
using v_id(i);
end loop;
end; (循环是forall而不是for)
declare
type v_emp1 is record(v_ename emp.ename%type,v_empno emp.empno%type,v_deptno emp.deptno%type);
type v_emptable is table of v_emp1 index by binary_integer;
v_delete v_emptable;
begin
delete from emp where deptno=10 --注意这里的delete与returning into语句是一句话,就是将删除
returning ename,empno,deptno bulk collect into v_delete; 的行中的某几列返回给变量,而且注意delete后面没有分号
if v_delete.count >0 then
for i in v_delete.first .. v_delete.last loop
dbms_output.put_line(v_delete(i).v_ename || v_delete(i).v_empno || v_delete(i).v_deptno);
end loop;
end if;
end;
/
9. fetch (bulk collect)into
returning (bulk collect) into
select (bulk collect) into