Page 1 of 1
Forum

Welcome to the Tweaking4All community forums!
When participating, please keep the Forum Rules in mind!

Topics for particular software or systems: Start your topic link with the name of the application or system.
For example “MacOS X – Your question“, or “MS Word – Your Tip or Trick“.

Please note that switching to another language when reading a post will not bring you to the same post, in Dutch, as there is no translation for that post!



MySQL/MariaDB - How...
 
Share:
Notifications
Clear all

[Solved] MySQL/MariaDB - How to duplicate a table

1 Posts
1 Users
0 Reactions
720 Views
 Hans
(@hans)
Famed Member Admin
Joined: 11 years ago
Posts: 2785
Topic starter  

You can duplicate or "clone" a table's contents by executing a CREATE TABLE ... AS SELECT statement

CREATE TABLE new_table AS SELECT * FROM original_table;

Caution:
- Cloning a big table can take a lot of time and server resources.
- This approach does not copy indexes, auto_increment definitions etc.

 

To do a proper clone of a table, where we inherit all table definitions, use the CREATE TABLE ... LIKE syntax.

CREATE TABLE new_table LIKE original_table;

Caution:
- This copies the structure but DOES NOT copy the data.

To copy the data, you'll need INSERT ... SELECT:

INSERT INTO new_table SELECT * FROM original_table;

Caution: Copying big tables may take a lot of resources!


   
ReplyQuote
Share: