Skip to content

Instantly share code, notes, and snippets.

@iredun
Created December 14, 2015 14:29
Show Gist options
  • Select an option

  • Save iredun/bf2bbba7210650174978 to your computer and use it in GitHub Desktop.

Select an option

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