Postgresql
將數組或記錄傳遞給 PostgreSQL 中的函式?
我的任務是將數組、記錄以及在某些情況下的記錄數組作為參數傳遞給 PostgreSQL 中的函式。
Postgres 對數組和復合類型的處理非常靈活。這可能是您正在嘗試做的事情:
create type my_type as (val1 integer, val2 integer);
create function my_function(arr my_type[]) returns text language plpgsql as $$ begin return arr::text; end;$$;
select my_function(array[row(1,2),row(3,4)]::my_type[]);
| 我的功能 | | :---------------- | | {"(1,2)","(3,4)"} |
dbfiddle在這裡