- If we have a foreign key reference in a table, we may want to prevent changes from being made if the primary key in the parent table is changed...
- We can do this by using ON UPDATE NO ACTION, ON DELETE NO ACTION
- If for some reason we want the change to propagate through both tables, we would use ON UPDATE CASCADE, ON DELETE CASCADE