本文介绍了复制MySQL表,索引和数据的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何复制或克隆或复制数据,结构,并将MySQL表的索引添加到新表?

How do I copy or clone or duplicate the data, structure,and indices of a MySQL table to a new one?

这是我到目前为止发现的.

This is what I've found so far.

这将复制数据和结构,但没有索引:

This will copy the data and the structure,but not the indices:

create table {new_table} select * from {old_table};

这将复制结构和索引,但没有数据:

This will copy the structure and indices,but not the data:

create table {new_table} like {old_table};

推荐答案

要使用索引和触发器进行复制,请执行以下两个查询:

To copy with indexes and triggers do these 2 queries:

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

要复制结构和数据,请使用以下代码:

To copy just structure and data use this one:

CREATE TABLE tbl_new AS SELECT * FROM tbl_old;

我之前曾问过这个问题:

I've asked this before:

复制MySQL表,包括索引

这篇关于复制MySQL表,索引和数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-05 03:53