Skip to content

Instantly share code, notes, and snippets.

@DisplayName
Created April 15, 2013 14:05
Show Gist options
  • Save DisplayName/5388299 to your computer and use it in GitHub Desktop.
Save DisplayName/5388299 to your computer and use it in GitHub Desktop.
begin=start
size=1000000
while true do
insert into tbl select * from tbl_old limit start, size
start = start + size + 1 (видимо +1 должно быть)
if (start > XXXXXXXX) exit
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment