Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save achmadhadikurnia/6f91d8773441f826cf5c6e428717b031 to your computer and use it in GitHub Desktop.
Save achmadhadikurnia/6f91d8773441f826cf5c6e428717b031 to your computer and use it in GitHub Desktop.
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