PostgreSQL
 sql >> Base de données >  >> RDS >> PostgreSQL

Comment obtenir des éléments de tableau distincts avec postgres ?

Je préfère cette syntaxe (environ 5 % plus rapide)

create or replace function public.array_unique(arr anyarray)
returns anyarray as $body$
    select array( select distinct unnest($1) )
$body$ language 'sql';

en utilisant :

select array_unique(ARRAY['1','2','3','4','4']);