Skip to content

Instantly share code, notes, and snippets.

@aohorodnyk
Created March 24, 2020 23:43
Show Gist options
  • Save aohorodnyk/d253cf4445bada9511ed51d11ca15398 to your computer and use it in GitHub Desktop.
Save aohorodnyk/d253cf4445bada9511ed51d11ca15398 to your computer and use it in GitHub Desktop.
CREATE TABLE t1_new LIKE t1;
RENAME TABLE t1 TO t1_old, t1_new TO t1;
INSERT INTO t1 SELECT * FROM t1_old;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment