PostgreSQL
 sql >> Teknologi Basis Data >  >> RDS >> PostgreSQL

KONSTRAINT UNIK Postgres untuk array

Saya tidak berpikir Anda dapat menggunakan fungsi dengan batasan unik tetapi Anda dapat menggunakan indeks yang unik . Jadi diberikan fungsi penyortiran seperti ini:

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;

Maka Anda bisa melakukan ini:

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

Kemudian hal berikut terjadi:

=> 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. The "O" di ORDBMS:Warisan PostgreSQL

  2. Instalasi PostgreSQL di Docker

  3. Titik Caculate 50 mil jauhnya (Utara, 45% NE, 45% SW)

  4. buka bungkus array postgresql menjadi baris

  5. ClassNotFoundException dengan PostgreSQL dan JDBC