web-dev-qa-db-ja.com

SELECT FROMステートメントでテーブルタイプを使用する方法

この質問は this とほぼ同じです

パッケージヘッダー内:
次の行タイプを宣言しました:

  TYPE exch_row IS RECORD(
    currency_cd VARCHAR2(9),
    exch_rt_eur NUMBER,
    exch_rt_usd NUMBER);


このテーブルタイプ:

  TYPE exch_tbl IS TABLE OF exch_row INDEX BY BINARY_INTEGER;


変数を追加しました:

exch_rt exch_tbl;


パッケージ本体内:
このテーブル変数にデータを入力します。


パッケージ本体の手順:
次のステートメントを使用します。

CURSOR c0 IS
  SELECT i.*, rt.exch_rt_eur, rt.exch_rt_usd
  FROM item i, exch_rt rt
  WHERE i.currency = rt.exchange_cd


Oracleでこれを行う方法


実際、私はMSSQLで「テーブル変数」ソリューションを探しています:

DECLARE @exch_tbl TABLE
(
  currency_cd VARCHAR(9),
  exch_rt_eur NUMBER,
  exch_rt_usd NUMBER)
)

StoredProcedure内でこのテーブル変数を使用します。

13
Stef Heyenrath

SQLでは、スキーマレベル(パッケージレベルまたはプロシージャレベルではなく)で定義されたテーブルタイプのみを使用でき、インデックスレベルのテーブル(連想配列)はスキーマレベルで定義できません。だから-あなたはこのようにネストしたテーブルを定義する必要があります

create type exch_row as object (
    currency_cd VARCHAR2(9),
    exch_rt_eur NUMBER,
    exch_rt_usd NUMBER);

create type exch_tbl as table of exch_row;

そして、次のように、TABLE演算子を使用してSQLで使用できます。

declare
   l_row     exch_row;
   exch_rt   exch_tbl;
begin
   l_row := exch_row('PLN', 100, 100);
   exch_rt  := exch_tbl(l_row);

   for r in (select i.*
               from item i, TABLE(exch_rt) rt
              where i.currency = rt.currency_cd) loop
      -- your code here
   end loop;
end;
/
17

Oracle 12Cより前のバージョンでは、PL/SQL定義のテーブルから選択することはできません。次のようなSQLタイプに基づくテーブルからのみ選択できます。

CREATE OR REPLACE TYPE exch_row AS OBJECT(
currency_cd VARCHAR2(9),
exch_rt_eur NUMBER,
exch_rt_usd NUMBER);


CREATE OR REPLACE TYPE exch_tbl AS TABLE OF exch_row;

Oracle 12Cでは、パッケージ仕様で定義されているPL/SQLテーブルから選択できるようになりました。

14
Tony Andrews

パッケージ内の単一のクエリでそれを行うことはできません。SQL型とPL/SQL型を混在させることはできません。また、Tony、Marcin、Thioが言ったように、SQLレイヤーで型を定義する必要があります。

これを本当にローカルで行いたい場合、BINARY_INTEGERの代わりにVARCHARでテーブルタイプのインデックスを作成できる場合は、次のようにできます。

-- dummy ITEM table as we don't know what the real ones looks like
create table item(
    item_num number,
    currency varchar2(9)
)
/   

insert into item values(1,'GBP');
insert into item values(2,'AUD');
insert into item values(3,'GBP');
insert into item values(4,'AUD');
insert into item values(5,'CDN');

create package so_5165580 as
    type exch_row is record(
        exch_rt_eur number,
        exch_rt_usd number);
    type exch_tbl is table of exch_row index by varchar2(9);
    exch_rt exch_tbl;
    procedure show_items;
end so_5165580;
/

create package body so_5165580 as
    procedure populate_rates is
        rate exch_row;
    begin
        rate.exch_rt_eur := 0.614394;
        rate.exch_rt_usd := 0.8494;
        exch_rt('GBP') := rate;
        rate.exch_rt_eur := 0.9817;
        rate.exch_rt_usd := 1.3572;
        exch_rt('AUD') := rate;
    end;

    procedure show_items is
        cursor c0 is
            select i.*
            from item i;
    begin
        for r0 in c0 loop
            if exch_rt.exists(r0.currency) then
                dbms_output.put_line('Item ' || r0.item_num
                    || ' Currency ' || r0.currency
                    || ' EUR ' || exch_rt(r0.currency).exch_rt_eur
                    || ' USD ' || exch_rt(r0.currency).exch_rt_usd);
            else
                dbms_output.put_line('Item ' || r0.item_num
                    || ' Currency ' || r0.currency
                    || ' ** no rates defined **');
            end if;
        end loop;
    end;
begin
    populate_rates;
end so_5165580;
/

したがって、ループ内では、r0.exch_rt_eurを使用すると予想される場所ではなく、代わりにexch_rt(r0.currency).exch_rt_eurを使用します。これはUSDでも同じです。匿名ブロックからのテスト:

begin
    so_5165580.show_items;
end;
/

Item 1 Currency GBP EUR .614394 USD .8494
Item 2 Currency AUD EUR .9817 USD 1.3572
Item 3 Currency GBP EUR .614394 USD .8494
Item 4 Currency AUD EUR .9817 USD 1.3572
Item 5 Currency CDN ** no rates defined **

Stefの回答に基づいて、これはパッケージに含まれている必要はありません。 insertステートメントでも同じ結果が得られます。 EXCHは、currency_key=1を含むUSDを含む、ユーロに対する他の通貨の為替レートを保持すると仮定します。

insert into detail_items
with rt as (select c.currency_cd as currency_cd,
        e.exch_rt as exch_rt_eur,
        (e.exch_rt / usd.exch_rt) as exch_rt_usd
    from exch e,
        currency c,
        (select exch_rt from exch where currency_key = 1) usd
    where c.currency_key = e.currency_key)
select i.doc,
    i.doc_currency,
    i.net_value,
    i.net_value / rt.exch_rt_usd AS net_value_in_usd,
    i.net_value / rt.exch_rt_eur as net_value_in_euro
from item i
join rt on i.doc_currency = rt.currency_cd;

19.99ポンドと25.00豪ドルで評価されるアイテムでは、detail_itemsを取得します。

DOC DOC_CURRENCY NET_VALUE         NET_VALUE_IN_USD  NET_VALUE_IN_EURO
--- ------------ ----------------- ----------------- -----------------
1   GBP          19.99             32.53611          23.53426
2   AUD          25                25.46041          18.41621

通貨をより再利用したい場合は、ビューを作成できます:

create view rt as
select c.currency_cd as currency_cd,
    e.exch_rt as exch_rt_eur,
    (e.exch_rt / usd.exch_rt) as exch_rt_usd
from exch e,
    currency c,
    (select exch_rt from exch where currency_key = 1) usd
where c.currency_key = e.currency_key;

そして、そこから値を使用して挿入します:

insert into detail_items
select i.doc,
    i.doc_currency,
    i.net_value,
    i.net_value / rt.exch_rt_usd AS net_value_in_usd,
    i.net_value / rt.exch_rt_eur as net_value_in_euro
from item i
join rt on i.doc_currency = rt.currency_cd;
4
Alex Poole

この問題ですべての助けをありがとう。私のソリューションをここに投稿します:

パッケージヘッダー

CREATE OR REPLACE PACKAGE X IS
  TYPE exch_row IS RECORD(
    currency_cd VARCHAR2(9),
    exch_rt_eur NUMBER,
    exch_rt_usd NUMBER);
  TYPE exch_tbl IS TABLE OF X.exch_row;

  FUNCTION GetExchangeRate RETURN X.exch_tbl PIPELINED;
END X;

パッケージ本体

CREATE OR REPLACE PACKAGE BODY X IS
  FUNCTION GetExchangeRate RETURN X.exch_tbl
    PIPELINED AS
    exch_rt_usd NUMBER := 1.0; --todo
    rw exch_row;
  BEGIN

    FOR rw IN (SELECT c.currency_cd AS currency_cd, e.exch_rt AS exch_rt_eur, (e.exch_rt / exch_rt_usd) AS exch_rt_usd
                 FROM exch e, currency c
                WHERE c.currency_key = e.currency_key
                  ) LOOP
      PIPE ROW(rw);
    END LOOP;
  END;


  PROCEDURE DoIt IS
  BEGIN
    DECLARE
      CURSOR c0 IS
        SELECT i.DOC,
               i.doc_currency,
               i.net_value,
               i.net_value / rt.exch_rt_usd AS net_value_in_usd,
               i.net_value / rt.exch_rt_eur AS net_value_in_euro,
          FROM item i, (SELECT * FROM TABLE(X.GetExchangeRate())) rt
         WHERE i.doc_currency = rt.currency_cd;

      TYPE c0_type IS TABLE OF c0%ROWTYPE;

      items c0_type;
    BEGIN
      OPEN c0;

      LOOP
        FETCH c0 BULK COLLECT
          INTO items LIMIT batchsize;

        EXIT WHEN items.COUNT = 0;
        FORALL i IN items.FIRST .. items.LAST SAVE EXCEPTIONS
          INSERT INTO detail_items VALUES items (i);

      END LOOP;

      CLOSE c0;

      COMMIT;

    EXCEPTION
      WHEN OTHERS THEN
        RAISE;
    END;
  END;

END X;

確認してください。

1
Stef Heyenrath

パッケージの仕様で言及したことはすべて実行できますが、INDEX BY BINARY_INTEGER;

パッケージ本体内:

宣言でテーブルを初期化します。

exch_rt exch_tbl := exch_tbl();

ローカルコレクションにレコードを追加するには、begin-endブロックで次のことができます。

exch_rt.extend;
                                one_row.exch_rt_usd := 2;
                                one_row.exch_rt_eur := 1;
                                one_row.currency_cd := 'dollar';
                                exch_rt(1) := one_row; -- 1 - number of row in the table - you can put a variable which will be incremented inside a loop 

このテーブルからデータを取得するために、パッケージ本体内で次を使用できます。

select exch_rt_usd, exch_rt_eur, currency_cd from table(exch_rt)

楽しい!

追伸回答が遅れてごめんなさい:D

0
t v