ฉันมีข้อสงสัยเกี่ยวกับปัญหาพื้นฐาน แต่สำคัญนี้ดังนั้นฉันตัดสินใจที่จะเรียนรู้จากตัวอย่าง
มาสร้างต้นแบบตารางทดสอบที่มีสองคอลัมน์con_idด้วยข้อ จำกัด ที่ไม่ซ้ำกันและind_idจัดทำดัชนีโดยดัชนีที่ไม่ซ้ำกัน
create table master (
con_id integer unique,
ind_id integer
);
create unique index master_unique_idx on master (ind_id);
Table "public.master"
Column | Type | Modifiers
--------+---------+-----------
con_id | integer |
ind_id | integer |
Indexes:
"master_con_id_key" UNIQUE CONSTRAINT, btree (con_id)
"master_unique_idx" UNIQUE, btree (ind_id)
ในคำอธิบายตาราง (\ d ใน psql) คุณสามารถบอกข้อ จำกัด ที่ไม่ซ้ำจากดัชนีที่ไม่ซ้ำกัน
ความเป็นเอกลักษณ์
ตรวจสอบความเป็นเอกลักษณ์กันเถอะ
test=# insert into master values (0, 0);
INSERT 0 1
test=# insert into master values (0, 1);
ERROR: duplicate key value violates unique constraint "master_con_id_key"
DETAIL: Key (con_id)=(0) already exists.
test=# insert into master values (1, 0);
ERROR: duplicate key value violates unique constraint "master_unique_idx"
DETAIL: Key (ind_id)=(0) already exists.
test=#
มันทำงานได้ตามที่คาดไว้!
กุญแจต่างประเทศ
ตอนนี้เราจะกำหนดรายละเอียดตารางที่มีสองปุ่มต่างประเทศอ้างอิงถึงสองคอลัมน์ของเราในต้นแบบ
create table detail (
con_id integer,
ind_id integer,
constraint detail_fk1 foreign key (con_id) references master(con_id),
constraint detail_fk2 foreign key (ind_id) references master(ind_id)
);
Table "public.detail"
Column | Type | Modifiers
--------+---------+-----------
con_id | integer |
ind_id | integer |
Foreign-key constraints:
"detail_fk1" FOREIGN KEY (con_id) REFERENCES master(con_id)
"detail_fk2" FOREIGN KEY (ind_id) REFERENCES master(ind_id)
ก็ไม่มีข้อผิดพลาด มาทำให้แน่ใจว่ามันใช้งานได้ดี
test=# insert into detail values (0, 0);
INSERT 0 1
test=# insert into detail values (1, 0);
ERROR: insert or update on table "detail" violates foreign key constraint "detail_fk1"
DETAIL: Key (con_id)=(1) is not present in table "master".
test=# insert into detail values (0, 1);
ERROR: insert or update on table "detail" violates foreign key constraint "detail_fk2"
DETAIL: Key (ind_id)=(1) is not present in table "master".
test=#
ทั้งสองคอลัมน์สามารถอ้างอิงในคีย์ต่างประเทศ
ข้อ จำกัด การใช้ดัชนี
คุณสามารถเพิ่มข้อ จำกัด ของตารางโดยใช้ดัชนีเฉพาะที่มีอยู่
alter table master add constraint master_ind_id_key unique using index master_unique_idx;
Table "public.master"
Column | Type | Modifiers
--------+---------+-----------
con_id | integer |
ind_id | integer |
Indexes:
"master_con_id_key" UNIQUE CONSTRAINT, btree (con_id)
"master_ind_id_key" UNIQUE CONSTRAINT, btree (ind_id)
Referenced by:
TABLE "detail" CONSTRAINT "detail_fk1" FOREIGN KEY (con_id) REFERENCES master(con_id)
TABLE "detail" CONSTRAINT "detail_fk2" FOREIGN KEY (ind_id) REFERENCES master(ind_id)
ขณะนี้ไม่มีความแตกต่างระหว่างคำอธิบายข้อ จำกัด ของคอลัมน์
ดัชนีบางส่วน
ในการประกาศข้อ จำกัด ตารางคุณไม่สามารถสร้างดัชนีบางส่วน มันมาโดยตรงจากคำนิยามcreate table ...
ของ ในการประกาศดัชนีที่ไม่ซ้ำกันคุณสามารถตั้งค่าWHERE clause
ให้สร้างดัชนีบางส่วน นอกจากนี้คุณยังสามารถสร้างดัชนีบนนิพจน์ (ไม่เพียง แต่ในคอลัมน์) และกำหนดพารามิเตอร์อื่น ๆ (การเรียงลำดับการเรียงลำดับการจัดตำแหน่ง NULL)
คุณไม่สามารถเพิ่มข้อ จำกัด ของตารางโดยใช้ดัชนีบางส่วน
alter table master add column part_id integer;
create unique index master_partial_idx on master (part_id) where part_id is not null;
alter table master add constraint master_part_id_key unique using index master_partial_idx;
ERROR: "master_partial_idx" is a partial index
LINE 1: alter table master add constraint master_part_id_key unique ...
^
DETAIL: Cannot create a primary key or unique constraint using such an index.