AdSense

網頁

2020/8/11

Oracle PL/SQL select function return nested table

在PL/SQL block查看function回傳的Nested Table

例如function get_nested_table回傳型態是Nested Table如下。

CREATE OR REPLACE TYPE nested_table_type IS TABLE OF VARCHAR2(100);

則查看get_nested_table function的回傳nested table內容,可直接用SELECT查詢。

SELECT * FROM get_nested_table();

沒有留言:

AdSense