I have one simple table with the following columns: id, name and parentID
I created a relationship diagram between id and parentID (in one table), for example, a simple tree in the same table, but when I tried to cascade the user, delete it was disabled for me
I know that it will be a recursive deletion, if I delete the parent, it will delete his children.
Do I have any options for random cascading deletion without triggers?
Sasha source
share