Bạn không thể tạo ràng buộc để kiểm tra điều đó với cấu trúc bảng hiện có. Một cách phổ biến để làm điều đó là như sau:
create table loaner (
loan_id number(5) primary key,
loan_type VARCHAR2 (16),
loan_start_date date,
loan_end_date date,
constraint loaner_uk unique (loan_id, loan_type)
);
create table office_worker (
worker_id number(5) primary_key,
loan_id number(5),
loan_type VARCHAR2 (16),
worker_name varchar2(50),
constraint office_worker_loaner_fk foreeign key (loan_id, loan_type) references loaner (loan_id, loan_type),
constraint office_worker_loan_type_chk check (loan_type = 'OFFICE')
);
create table nonoffice_worker (
nonworker_id number(5) primary_key,
loan_id number(5),
loan_type VARCHAR2 (16),
nonworker_name varchar2(50),
constraint nonoffice_worker_loaner_fk foreeign key (loan_id, loan_type) references loaner (loan_id, loan_type),
constraint nonoffice_worker_loan_type_chk check (loan_type = 'NONOFFICE')
);
Đó là:
- Tạo ràng buộc UNIQUE dư thừa trong (load_id, loan_type) trong bảng đầu tiên.
- Thêm loan_type vào các bảng kiểu con và đặt khoá ngoại vào (loan_id, loan_type).
- Thêm ràng buộc kiểm tra vào mỗi bảng loại phụ để đảm bảo sử dụng đúng loan_type.