Level 24
If you have a record on one (child) table that references an ID on another (parent) table via a foreign key, and it is set to "cascade" on delete, then if the record on the parent table is deleted it will also delete all of the corresponding records on the child table.
For example, if you have a posts table and a users table, and have user_id on posts referencing id on users, then when you delete a user it will "cascade" down to the posts table and delete all of their posts.