Skip to content

Instantly share code, notes, and snippets.

@sugendran
Created May 29, 2012 01:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sugendran/2822025 to your computer and use it in GitHub Desktop.
Save sugendran/2822025 to your computer and use it in GitHub Desktop.
dump the last million rows from the db table
mysqldump -uroot -p 1_default data --single-transaction --where='id > (select max(id)-1000000 from data)' > 1_default_data.sql
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment