Skip to content

Instantly share code, notes, and snippets.

@iredun
Created December 14, 2015 14:29
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 iredun/bf2bbba7210650174978 to your computer and use it in GitHub Desktop.
Save iredun/bf2bbba7210650174978 to your computer and use it in GitHub Desktop.
Cкопировать таблицу в MySQL
CREATE TABLE new_table_name LIKE old_table_name;
INSERT new_table_name SELECT * FROM old_table_name;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment