Foreign keys and updatesCASCADEInstead of blocking the action (i.e., update or deletion), cascade it, (i.e. propagate it).
create table P(
p_id int not null primary key,
x int
);
create table F(
f_id int not null primary key,
p_id int references P
|