Oracle
 sql >> Cơ Sở Dữ Liệu >  >> RDS >> Oracle

Cách lấy nhiều hàng từ một hàm được lưu trữ bằng oracle

với các loại SQL bạn không thể thực hiện% ROWTYPE, bạn phải nhập từng cột để khớp với bảng *.

* sys.anydataset sang một bên. nhưng đi theo lộ trình đó thì mã hóa phức tạp hơn rất nhiều.

ví dụ. nếu bảng của bạn là

create table foo (id number, cola varchar2(1));

sau đó

create type email_queue_type is object (id number, cola varchar2(1));
/
create type t_email_queue_type as table of email_queue_type;
/

và sử dụng bảng đó email_queue_type_tab làm đầu ra từ hàm của bạn.

nhưng tôi muốn giới thiệu một hàm pipelined, vì mã hiện tại của bạn không thể mở rộng.

ví dụ:

SQL> create table foo (id number, cola varchar2(1));

Table created.

SQL>
SQL> create type email_queue_type is object (id number, cola varchar2(1));
  2  /

Type created.

SQL> create type t_email_queue_type as table of email_queue_type;
  2  /

Type created.

SQL> insert into foo select rownum, 'a' from dual connect by level <= 10;

10 rows created.

SQL>
SQL> create or replace PACKAGE email_queue AS
  2
  3
  4    FUNCTION lock_and_get return t_email_queue_type pipelined;
  5
  6  END email_queue;
  7  /

Package created.

SQL> create or replace PACKAGE BODY email_queue AS
  2
  3      FUNCTION lock_and_get RETURN t_email_queue_type pipelined AS
  4        queue_obj t_email_queue_type;
  5
  6      BEGIN
  7
  8       for r_row in (select * from foo)
  9              loop
 10                pipe row(email_queue_type(r_row.id, r_row.cola));
 11              end loop;
 12
 13      END lock_and_get;
 14
 15  END email_queue;
 16  /

Package body created.

SQL> select * from table(email_queue.lock_and_get());

        ID C
---------- -
         1 a
         2 a
         3 a
         4 a
         5 a
         6 a
         7 a
         8 a
         9 a
        10 a

10 rows selected.

SQL>


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Nhận thời gian thực thi của script sql trong oracle sqlplus

  2. Tại sao TO_CHAR lại thêm khoảng trắng (một ký tự màu trắng) vào đầu một số?

  3. chọn chế độ hsqldb Oracle để cập nhật NOWAIT

  4. So sánh các chuỗi bỏ qua dấu trong SQL (ORACLE)

  5. Cách thực hiện SQL injection trên Oracle