답변:
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[]);
| my_function | | : ---------------- | | { "(1,2)", "(3,4)"} |
여기 dbfiddle