Last active
April 4, 2023 02:41
-
-
Save achmadhadikurnia/6f91d8773441f826cf5c6e428717b031 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DELETE FROM table WHERE id NOT IN ( | |
SELECT id | |
FROM ( | |
SELECT id | |
FROM table | |
ORDER BY id DESC | |
LIMIT x | |
) temporary | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment