如何使用plsql中的过程返回记录表

发布于 2024-10-21 07:46:47 字数 366 浏览 1 评论 0原文

我正在编写该程序,因为

   create or replace procedure my_proc(limit_value in number,.........)
   is
       cursor...................
       .........................
   begin
       open ...;
       loop
         .....
         .....
       close ....;
   end my_proc;

我想生成工资低于限制值的报告。

是否可以通过 OUT 参数获取表记录来生成报告?

如果可以请解释一下

I am writing the procedure as

   create or replace procedure my_proc(limit_value in number,.........)
   is
       cursor...................
       .........................
   begin
       open ...;
       loop
         .....
         .....
       close ....;
   end my_proc;

I want to generate the reports who are having the salary less than limit value.

Is it possible to get the table records with OUT parameter to generate the reports?

If it is possible, please explain

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

静水深流 2024-10-28 07:46:47

是的,你可以。您甚至可以使用过程/函数的返回值来完成此操作:

create or replace type salary_rec as object (
    emp_id number
    salary number
);

create or replace type t_salary as table of salary_rec;

create or replace function retrieve_emp(
    i_max_salary number
) return t_varchar_number
as
    result t_salary;
begin
    select salary_rec(emp_id, salary) bulk collect into result
    from emp_salary
    where salary <= i_max_salary;

    return ret;
end;
/

这只是 BULK COLLECT 以及 Oralce 和 PL/SQL 中不同表类型的众多变体之一。

Yes, you can. You can even do it with the return value of the procedure / function:

create or replace type salary_rec as object (
    emp_id number
    salary number
);

create or replace type t_salary as table of salary_rec;

create or replace function retrieve_emp(
    i_max_salary number
) return t_varchar_number
as
    result t_salary;
begin
    select salary_rec(emp_id, salary) bulk collect into result
    from emp_salary
    where salary <= i_max_salary;

    return ret;
end;
/

That's just one of many variations of BULK COLLECT and of the different table types in Oralce and PL/SQL.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文