Skip to content
Advertisement

Can’t delete records from the same table using NOT EXISTS MySQL syntax

I want to perform deletion in the same table. I’ve tried different ways, but I still can’t get it right. So, I got this error You can’t specify target table ‘tb’ for update in FROM clause. I tried aliasing the tables, but nothing done. I can’t figure out what is missing. I appreciate any ideas.

Advertisement

Answer

MySQL supports JOINs in DELETE and UPDATE. This works around the “same table” limitation in this database. For your logic, it could look like:

This query is highly irregular, though. It is either deleting all rows or no rows.

If you just want to keep those rows, then this is the way to go:

Or:

If there are NULL values in either column, then the logic also needs to take this into account.

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