- Same keyword as FK declaration:
on delete/update cascade.
- But it means something different:
- Cascade the deletion to dependent database objects.
- In this case, the foreign key from F.
What happens
- The FK from F to P has been deleted, along with P.
- F.p_id does not refer to rows of P.
- The table drop succeeds, and F is left alone.