9.25. 集合回傳函式
本節介紹可以回傳多個資料列的函數。此類中使用最廣泛的函數是序列生成函數,如 Table 9.61和 Table 9.62 所述。其他更專門的集合回傳函數在本手冊的其他地方介紹。有關組合多個集合回傳函數的方法,請參見第 7.2.1.4 節。
Table 9.61. Series Generating Functions
generate_series(
start
, stop
)
int
, bigint
or numeric
setof int
, setof bigint
, or setof numeric
(same as argument type)
從 start 到 stop 產生成一系列的值,間隔為 1
generate_series(
start
, stop
, step
)
int
, bigint
or numeric
setof int
, setof bigint
or setof numeric
(same as argument type)
產生一系列的值,從 start 到 end,間隔為 step
generate_series(
start
, stop
, step
interval
)
timestamp
or timestamp with time zone
setof timestamp
or setof timestamp with time zone
(same as argument type)
產生一系列的值,從 start 到 end,間隔為 step
當 step 為正時,如果 start 大於 stop 則回傳零筆資料。相反地,當 step 為負時,如果 start 小於 stop 也回傳零筆資料。NULL 的輸入也回傳零筆資料。 step 為零是錯誤的。以下是一些範例:
Table 9.62. Subscript Generating Functions
generate_subscripts(
array anyarray
, dim int
)
setof int
產生成一個包含給定陣列索引的系列內容。
generate_subscripts(
array anyarray
, dim int
, reverse boolean
)
setof int
產生一個包含給定陣列索引的序列內容。當 reverse 為 true 時,將以相反的順序回傳該序列。
generate_subscripts 是一個很方便的函數,用於為給定陣列的指定維度產成一組有效的索引內容。對於沒有所請求維數的陣列或 NULL 陣列,回傳零筆資料(但是對於 NULL 陣列元素,回傳有效的索引)。以下是一些範例:
當 FROM 子句中的函數加上 WITH ORDINALITY 時,一個 bigint 欄位將附加到輸出資料中,該欄位從 1 開始,並針對函數輸出的每一筆資料以 1 遞增。這對集合回傳函數中的 unnest() 特別有用。
Last updated