Skip to content
Advertisement

Delete with inner join and trigger throw error: Can’t update table ‘table_b’ in stored function/trigger

Why the following error (Can’t update table ‘table_b’ in stored function/trigger because it is already used by statement which invoked this stored function/trigger) appears after i try to delete with inner join? Can i solve it?

Advertisement

Answer

I don’t see the point for a trigger here. The functionality you want can be achieved by just adding the on delete cascade option to the declaration of your foreign key:

Now anytime a record is dropped from table_a, the children record (as designated by the foreign key definition) are deleted from table_b.

With this set-up (and without the trigger), both your delete statements would run fine. I would actually use exists rather than a join or in, but that’s mostly a matter of taste:

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement