MySQL Forums
Forum List  »  General

Very slow DELETE
Posted by: Bill Clinton
Date: September 27, 2017 09:17AM

DELETE FROM table
WHERE ID IN
(
SELECT ID
FROM
(
SELECT ID
FROM table
WHERE text = 'abc'
ORDER BY date DESC
LIMIT 16,103
) a
)


What am I doing wrong?

Thank you!

Options: ReplyQuote


Subject
Written By
Posted
Very slow DELETE
September 27, 2017 09:17AM
September 27, 2017 09:28AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.