K tomu můžete použít omezení CHECK. Dotaz nemůžete vložit do omezení CHECK, ale můžete volat funkci; takže vytvoříme jednoduchou funkci, která nám řekne, zda je pluginid
je matice:
create or replace function is_matrix(int) returns boolean as $$
select exists (
select 1
from plugins
where id = $1
and type = 'matrix'
);
$$ language sql;
a zabalte to do omezení CHECK:
alter table matrix_params add constraint chk_is_matrix check (is_matrix(pluginid));
Potom:
=> 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 se stará o referenční integritu a kaskády.