W tym celu można użyć ograniczenia CHECK. Nie możesz umieścić zapytania w ograniczeniu CHECK, ale możesz wywołać funkcję; więc budujemy prostą funkcję, która mówi nam, czy pluginid
jest macierzą:
create or replace function is_matrix(int) returns boolean as $$
select exists (
select 1
from plugins
where id = $1
and type = 'matrix'
);
$$ language sql;
i zapakuj to w ograniczenie CHECK:
alter table matrix_params add constraint chk_is_matrix check (is_matrix(pluginid));
Następnie:
=> insert into matrix_params values (1,1);
=> insert into matrix_params values (2,3);
ERROR: new row for relation "matrix_params" violates check constraint "chk_is_matrix"
A FK dba o integralność referencyjną i kaskady.