PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

funzioni di matrice biginteger


Puoi sostituire la tua funzione. Questo è ragionevolmente veloce:

CREATE OR REPLACE FUNCTION arr_subtract(int8[], int8[])
  RETURNS int8[] AS
$func$
SELECT ARRAY(
    SELECT a
    FROM   unnest($1) WITH ORDINALITY x(a, ord)
    WHERE  a <> ALL ($2)
    ORDER  BY ord
    );
$func$  LANGUAGE sql IMMUTABLE;

Chiama:

SELECT arr_subtract('{3,5,6,7,8,9}':: int8[], '{3,4,8}'::int8[]);

Risultato:

{5,6,7,9}

Mantiene l'ordine originale dell'array.

Correlati:

  • PostgreSQL unnest() con numero elemento
  • Escludi elementi dell'array corrispondenti