উত্তর:
পোস্টগ্রিসে অ্যারে এবং সংমিশ্রিত প্রকারের খুব নমনীয় হ্যান্ডলিং রয়েছে । এটি আপনি যে ধরণের কাজটি করার চেষ্টা করছেন তা হতে পারে:
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)"} |
এখানে ডিবিফিডল