Passare un array o un record a una funzione in PostgreSQL?


Risposte:


20

Postgres ha una gestione molto flessibile di array e tipi compositi . Questo potrebbe essere il tipo di cosa che stai cercando di fare:

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 qui

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.