简体   繁体   中英

Fastest way to copy a table in mysql?

I want to copy a table in MySQL. What is the fastest way? Like this?

CREATE TABLE copy LIKE original;
INSERT INTO copy SELECT * FROM original;

or

CREATE TABLE copy SELECT * FROM original;
ALTER TABLE copy ADD PRIMARY KEY (id);

or is there another way?

EDIT: I'm worried about the indexes being re-created, how does mysql proceed executing these statements?

PS. can't use command-line tools like mysqldump, must be on-the-fly.

This copies the structure of the table immediately, but not the data:

CREATE TABLE copy LIKE original;

This creates all the indexes the original table had.

It works this way in mysql 5.1.39 .

The fastest way using MyISAM tables while preserving indexes ) and maybe other storage engines is:

CREATE TABLE copy LIKE original;
ALTER TABLE copy DISABLE KEYS;
INSERT INTO copy SELECT * FROM original;
ALTER TABLE copy ENABLE KEYS;

You want to disable your keys for your database load and then recreate the keys at the end.

Similarly, for InnoDB :

SET unique_checks=0; SET foreign_key_checks=0; 
..insert sql code here..
SET unique_checks=1; SET foreign_key_checks=1;

(As pointed out in the comments.)

From the manual :

"CREATE TABLE ... SELECT does not automatically create any indexes for you. This is done intentionally to make the statement as flexible as possible. If you want to have indexes in the created table, you should specify these before the SELECT statement: "

CREATE TABLE bar (UNIQUE (n)) SELECT n FROM foo;

You can specify indices and data types (to avoid datatype conversion) in with both CREATE TABLE LIKE and CREATE TABLE SELECT . Which one is faster will depend on your setup.

To copy with indexes and triggers do these 2 queries:

CREATE TABLE newtable LIKE oldtable; 
INSERT newtable SELECT * FROM oldtable;

To copy just structure and data use this one:

CREATE TABLE tbl_new AS SELECT * FROM tbl_old;

Does create table mynewtable (select * from myoldtable) work in mysql? If so you can try it too.

将结构和所有条目从一个表复制到另一个表(通过创建新表)的最佳方法是此查询...

CREATE TABLE new_table LIKE old_table; INSERT new_table SELECT * FROM old_table;

Try SELECT INTO , and use a variable as a go-between.

You'll have to create the receiving table, first, to have the same structure as the source table.

Best thing is, it's internal so it's fast. You'll lose your indexes, though.

if you are using MyISAM you can also copying and renaming the induvidual files . .MYD, .MYI, .FRM files in the backend

Maybe you could take a look at SHOW CREATE TABLE .

Steps to take:

  • Go to phpmyadmin

  • Go to SQL

Execute this query

SHOW CREATE TABLE `the_old_table`;
  • Click options Check "Full texts" and press Go.

The result is a full CREATE TABLE statement. Edit the query until you are happy.

Resource: http://dev.mysql.com/doc/refman/5.7/en/show-create-table.html

CREATE TABLE copy SELECT * FROM original;

是一种快速的方法,但可能不是索引的最快原因。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM