oracle 自定义类型(type)的用法

文章展示了如何在Oracle数据库中定义和使用自定义类型,包括object类型和table类型。通过创建函数返回这些类型的实例,并演示了如何插入单条或多条记录,以及如何调用和打印这些函数的执行结果。内容涉及到SQL查询、变量赋值和循环遍历集合。
摘要由CSDN通过智能技术生成

emp表数据如下所示

定义object类型

create or replace type typeof_userinfo_row as object(
  user_id varchar2(50),
  user_name varchar2(50)
)

创建函数并将此类型作为返回值类型

create or replace function FUN_TEST
return typeof_userinfo_row
is

  FunctionResult typeof_userinfo_row;

begin

  FunctionResult:=typeof_userinfo_row(null,null);
  
  --将单条数据值插入到自定义类型的变量中
  SELECT e.empno,e.ename  INTO FunctionResult.user_id,FunctionResult.user_name
  FROM emp e where e.empno = '7499';

  RETURN(FunctionResult);

end FUN_TEST;

调用该函数,并打印执行结果

declare res typeof_userinfo_row;

begin
  res := FUN_TEST();
  
  dbms_output.put_line(res.user_id || ' ' || res.user_name);
  
end;

执行结果

定义table类型

create or replace type typeof_userinfo_table is table of typeof_userinfo_row

创建函数并将此类型作为返回值类型

create or replace function FUN_TEST1
return typeof_userinfo_table
is

  FunctionResult typeof_userinfo_table;
begin
  --将多条记录的值同时插入到自定义类型的变量中
  SELECT typeof_userinfo_row(empno,ename) BULK COLLECT INTO FunctionResult FROM emp e;
    
  RETURN(FunctionResult);

end FUN_TEST1;

调用该函数,并打印执行结果

declare 
res typeof_userinfo_table;
i NUMBER := 1;

begin
  res := FUN_TEST1();
  
  WHILE i <= res.LAST  LOOP
  	DBMS_OUTPUT.PUT_LINE(res(i).user_id || ' ' ||res(i).user_name);
	 
		i := i + 1;
	END LOOP;
 
end;

执行结果

其他用法参考文章:【Oracle】TYPE定义的数据类型_oracle type类型_Do_GH的博客-CSDN博客

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值