Trigger calls in cascade deleting
I have table "A" in MySQL. It has some references with cascade deleting to some other tables ("B", "C", "D" ...). I need to use a trigger when something deletes from "A". This trigger works when I delete records from "A" directly. But it doesn't work with cascade deleting. Does any version of MySQL exist where my trigger will work with cascade deleting? Or, maybe, there is another way to call Niel de Wet From http://dev.mysql.com/doc/refman/5.6/en/innodb-restrictions.html Cascaded foreign key actions do not activate triggers In other words, you cannot use the trigger with cascaded deleting.