PostgreSQL
 sql >> Datenbank >  >> RDS >> PostgreSQL

Postgres UNIQUE CONSTRAINT für Array

Ich glaube nicht, dass Sie eine Funktion mit einer eindeutigen Einschränkung verwenden können, aber Sie können mit einem eindeutigen Index . Also bei einer Sortierfunktion in etwa so:

create function sort_array(anyarray) returns anyarray as $$
    select array_agg(distinct n order by n) from unnest($1) as t(n);
$$ language sql immutable;

Dann könnten Sie Folgendes tun:

create table mytable (
    interface integer[2] 
);
create unique index mytable_uniq on mytable (sort_array(interface));

Dann passiert Folgendes:

=> insert into mytable (interface) values (array[11,23]);
INSERT 0 1
=> insert into mytable (interface) values (array[11,23]);
ERROR:  duplicate key value violates unique constraint "mytable_uniq"
DETAIL:  Key (sort_array(interface))=({11,23}) already exists.
=> insert into mytable (interface) values (array[23,11]);
ERROR:  duplicate key value violates unique constraint "mytable_uniq"
DETAIL:  Key (sort_array(interface))=({11,23}) already exists.
=> insert into mytable (interface) values (array[42,11]);
INSERT 0 1