ผ่านอาร์เรย์หรือบันทึกไปยังฟังก์ชั่นใน PostgreSQL?


คำตอบ:


20

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 ที่นี่

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.