Oracle
 sql >> Database >  >> RDS >> Oracle

Procedura/funzione PL/SQL per mostrare i dati di tabelle diverse in modo dinamico insieme ai nomi delle colonne nella prima riga di dati

Utilizzare il dizionario dei dati per creare un'istruzione SQL che seleziona le colonne corrette. Usa l'SQL dinamico per aprire un refcursor a quell'istruzione e restituire il cursore dalla funzione.

Schema di esempio

create table tab_1 as
select '00001' id, 'Q0' quarter, 2 risk from dual union all
select '00001' id, 'Q1' quarter, 3 risk from dual union all
select '00001' id, 'Q2' quarter, 1 risk from dual union all
select '00001' id, 'Q3' quarter, 1 risk from dual union all
select '00001' id, 'Q4' quarter, 2 risk from dual;

create table tab_2 as
select '00001' id, 'ACTIVE' status from dual union all
select '00002' id, 'PURGED' status from dual union all
select '00003' id, 'ACTIVE' status from dual union all
select '00004' id, 'ACTIVE' status from dual;

Funzione

create or replace function get_results(p_id number) return sys_refcursor is
    v_sql varchar2(32767);
    v_refcursor sys_refcursor;
begin
    --Get SQL statement.
    select
        'select ' || 
        listagg(column_name, ',') within group (order by column_id) ||
        ' from ' || table_name
    into v_sql
    from user_tab_columns
    where table_name = 'TAB_' || p_id
        and column_id <= 2
    group by table_name;

    open v_refcursor for v_sql;

    return v_refcursor;
end;
/

Chiamare la funzione

La funzione dovrebbe funzionare fintanto che l'applicazione comprende i recursor. Di seguito è riportato un esempio in una versione recente di SQL*Plus:

SQL> select get_results(1) from dual;

GET_RESULTS(1)
--------------------
CURSOR STATEMENT : 1

CURSOR STATEMENT : 1

ID    QU
----- --
00001 Q0
00001 Q1
00001 Q2
00001 Q3
00001 Q4