本文介紹NESTED TABLE的使用方法和使用場景。

背景介紹

Oracle nested table詳細功能請參見http://www.orafaq.com/wiki/NESTED_TABLE

NESTED TABLE是一種Oracle數據類型,用于支持包含多值屬性的列,在本例中,列可以容納整個子表。

創建具有NESTED TABLE的表:
CREATE OR REPLACE TYPE my_tab_t AS TABLE OF VARCHAR2(30);  
CREATE TABLE nested_table (id NUMBER, col1 my_tab_t)  
       NESTED TABLE col1 STORE AS col1_tab;
將數據插入表:
INSERT INTO nested_table VALUES (1, my_tab_t('A'));  
INSERT INTO nested_table VALUES (2, my_tab_t('B', 'C'));  
INSERT INTO nested_table VALUES (3, my_tab_t('D', 'E', 'F'));  
COMMIT;
從NESTED TABLE中選擇:
SQL> SELECT * FROM nested_table;  
        ID COL1  
---------- ------------------------  
         1 MY_TAB_T('A')  
         2 MY_TAB_T('B', 'C')  
         3 MY_TAB_T('D', 'E', 'F')
取消嵌套子表:
SQL> SELECT id, COLUMN_VALUE FROM nested_table t1, TABLE(t1.col1) t2;  
        ID COLUMN_VALUE  
---------- ------------------------  
         1 A  
         2 B  
         2 C  
         3 D  
         3 E  
         3 F  
6 rows selected.

PostgreSQL Nested Table兼容

PostgreSQL 使用數組+復合類型,可以實現同樣場景需求。

  1. 創建復合類型。
    postgres=# create type thisisnesttable1 as (c1 int, c2 int, c3 text, c4 timestamp);  
    CREATE TYPE  
      
    or
    create table nesttablename (...);  -- 隱含創建composite type
    說明 如果系統中曾經已經創建了這個類型,或者曾經已經創建過一個即將使用的TABLE,則不需要再次創建。
  2. 創建Nested Table。
    postgres=# create table hello (id int, info text, nst thisisnesttable1[]);  
    CREATE TABLE
    說明 thisisnesttable1作為hello表的Nested Table
  3. 插入數據。
    postgres=# insert into hello values (1,'test',array['(1,2,"abcde","2018-01-01 12:00:00")'::thisisnesttable1,  '(2,3,"abcde123","2018-01-01 12:00:00")'::thisisnesttable1]);  
    INSERT 0 1  
      
    或使用row構造法
    insert into hello values (
      1,
      'test', 
      (array
        [
          row(1,2,'hello',now()),  
          row(1,3,'hello',now())
        ]
      )::thisisnesttable1[]
    );
    說明 多行以數組存入,一個nested table的最大限制1GB(即PostgreSQL varying type的存儲上限)。

    詳情請參見https://www.postgresql.org/docs/11/sql-expressions.html#SQL-SYNTAX-ROW-CONSTRUCTORS

  4. 查詢。
    postgres=# select * from hello ;  
     id | info |                                       nst                                          
    ----+------+----------------------------------------------------------------------------------  
      1 | test | {"(1,2,abcde,\"2018-01-01 12:00:00\")","(2,3,abcde123,\"2018-01-01 12:00:00\")"}  
    (1 row)
  5. 使用unnest可以解開Nested Table的內容。
    postgres=# select id,info,(unnest(nst)).* from hello ;  
     id | info | c1 | c2 |    c3    |         c4            
    ----+------+----+----+----------+---------------------  
      1 | test |  1 |  2 | abcde    | 2018-01-01 12:00:00  
      1 | test |  2 |  3 | abcde123 | 2018-01-01 12:00:00  
    (2 rows)  
      
    postgres=# select id,info,(unnest(nst)).c1 from hello ;  
     id | info | c1   
    ----+------+----  
      1 | test |  1  
      1 | test |  2  
    (2 rows)