PostgreSQL
 sql >> Base de Dados >  >> RDS >> PostgreSQL

funções de array biginteger



Você pode substituir sua própria função. Este é razoavelmente rápido:
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;

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

Resultado:
{5,6,7,9}

Mantém a ordem original do array.

Relacionado:
  • PostgreSQL unnest() com número do elemento
  • Excluir elementos de matriz correspondentes