學習使用ORACLE巢狀表格

來源:互聯網
上載者:User

最近項目中需要用到oracle的項目表

學習了一下

具體代碼如下

SQL> create type depscore_t as object(
  2  depid number,
  3  score number);
  4  /

類型已建立。

SQL> create type depscores_t as table of depscore_t;
  2  /

類型已建立。

SQL> create table befscore(proid number,
  2  depscore depscores_t)
  3  nested table depscore store as depscoretab;

表已建立。

  1* insert into befscore values(1,depscores_t(depscore_t(1,1),depscore_t(2,2)))
SQL> /

已建立 1 行。

SQL> insert into befscore values(2,depscores_t(depscore_t(2,2),depscore_t(3,4)));

已建立 1 行。

SQL> insert into befscore values(3,depscores_t(depscore_t(3,5),depscore_t(5,5)));

已建立 1 行。

SQL> select * from befscore where proid=1;

     PROID
----------
DEPSCORE(DEPID, SCORE)
--------------------------------------------------------------------------------
         1
DEPSCORES_T(DEPSCORE_T(1, 1), DEPSCORE_T(2, 2))

SQL> select e.* from befscore,table(depscore) e where proid=1;

     DEPID      SCORE
---------- ----------
         1          1
         2          2

SQL> select e.depid from befscore,table(depscore) e where proid=1;

     DEPID
----------
         1
         2

SQL> select value(e) from befscore,table(depscore) e;

VALUE(E)(DEPID, SCORE)
--------------------------------------------------------------------------------
DEPSCORE_T(1, 1)
DEPSCORE_T(2, 2)
DEPSCORE_T(2, 2)
DEPSCORE_T(3, 4)
DEPSCORE_T(3, 5)
DEPSCORE_T(5, 5)

已選擇6行。

SQL> update befscore set depscore=depscores_t(depscore_t(8,8),depscore_t(7,7))
  2  where proid=1;

已更新 1 行。

  1* select e.depid,score from befscore,table(depscore) e
SQL> /

     DEPID      SCORE
---------- ----------
         2          2
         3          4
         3          5
         5          5
         8          8
         7          7

已選擇6行。

SQL> select e.depid id,score depscore from befscore,table(depscore) e;

        ID   DEPSCORE
---------- ----------
         2          2
         3          4
         3          5
         5          5
         8          8
         7          7

已選擇6行。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.