Skip to content
Advertisement

MySQL Select works fine but Delete hangs indefinitely based on the position of GROUP BY

Above query ran in 2.2 seconds returning four result. Now when I change the select * to delete, it hangs up indefinitely.

If I move the position of group by clause inside the alias select query, it will no longer hang.

Why does it hang? Even though (select * from table1) pulls millions of records, the query doesn’t seem to stop executing for hours. Can anybody explain what huddles the query? It puzzles me because the select query works fine whereas the delete query hangs.

EDIT: My focus here is why it hangs. I already posted work-around that works fine. But in order to develop prevention system, I need to get to the root cause of this..

Advertisement

Answer

Use a JOIN instead of WHERE ID IN (SELECT ...).

I think your query is not being optimized because it has to recalculate the subquery after each deletion, since deleting a row could change the MIN(id) for that group. Using a JOIN requires the grouping and aggregation to be done just once.

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