PostgreSQL
 sql >> Baza danych >  >> RDS >> PostgreSQL

Postgres UNIKALNE OGRANICZENIE dla tablicy

Nie sądzę, że możesz użyć funkcji z unikalnym ograniczeniem, ale możesz z unikalnym indeksem . Więc podając funkcję sortującą, coś takiego:

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;

Wtedy możesz to zrobić:

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

Wtedy dzieje się co następuje:

=> 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


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Uzyskać kolejność ostatnich N wierszy w bazie danych?

  2. Zarządzanie PostgreSQL Commitfest

  3. PostgreSQL:czas utworzenia tabeli

  4. Powolne proste zapytanie o aktualizację w bazie danych PostgreSQL z 3 milionami wierszy

  5. Postgresql nie tworzy bazy danych z „createdb” jako superużytkownikiem, ale nie wyświetla błędów