Delete rules: For every parent and child relationship in a database using foreign key, here are the delete rules in SQL which are followed if the row of a parent table is deleted: 1) RESTRICT delete rule: If a row has children, then it cannot be deleted from the parent table. 2) CASCADE delete rule: [...]