Skip to content

Instantly share code, notes, and snippets.

@munky69rock
Created November 7, 2012 11:15
Show Gist options
  • Save munky69rock/4030909 to your computer and use it in GitHub Desktop.
Save munky69rock/4030909 to your computer and use it in GitHub Desktop.
duplicate table
create table [duplicate_table_name] like [table_name];
insert into [duplicate_table_name] select * from [table_name];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment