unnest () is a system function for expanding an array, or combination of arrays, ... postgres=# SELECT unnest(ARRAY[1,2,3]); unnest -------- 1 2 3 (3 rows) ...
確定! 回上一頁