如何复制、克隆或复制数据、结构、,并将MySQL表的索引转换为新表?
这是我到目前为止发现的。
这将复制数据和结构,但不包括指数:
create table {new_table} select * from {old_table};
这将复制结构和索引,但不包括数据:
create table {new_table} like {old_table};
如何复制、克隆或复制数据、结构、,并将MySQL表的索引转换为新表?
这是我到目前为止发现的。
这将复制数据和结构,但不包括指数:
create table {new_table} select * from {old_table};
这将复制结构和索引,但不包括数据:
create table {new_table} like {old_table};
当前回答
// To copy specific column data use this one:
CREATE TABLE ut_axis_existrec LIKE ut_karvy_annexure; // To create new table
INSERT INTO ut_axis_existrec
(funding_ac,micr_no, warrant_no,
amount,invname,mfundcode,funding_dt,status,remarks1,amc_remark,created_at)
SELECT
t1.funding_ac,
t1.micr_no,
t1.warrant_no,
t1.amount,
t1.invname,
t1.mfund_code,
t1.funding_dt,
t1.status,
t1.remarks1,
t1.created_at
from ut_axis_karvy
inner join
ut_axis_karvy_master as t2
on t1.micr_no = t2.micr_no;
其他回答
在我尝试了上面的解决方案后,我想出了自己的方法。
我的解决方案有点手动,需要DBMS。
首先,导出数据。
第二,打开导出数据。
第三,用新表名替换旧表名。
第四,更改数据中的所有触发器名称(我使用MySQL,不更改触发器名称时会显示错误)。
第五,将编辑的SQL数据导入数据库。
对于MySQL
CREATE TABLE newtable LIKE oldtable ;
INSERT newtable SELECT * FROM oldtable ;
对于MSSQL使用MyDatabase:
Select * into newCustomersTable from oldCustomersTable;
此SQL用于复制表,此处旧CustomersTable的内容将复制到新CustomersTable。确保数据库中不存在newCustomersTable。
我发现了同样的情况,我采取的方法如下:
执行SHOW CREATE TABLE<TABLE name to clone>:这将为您提供要克隆的表的CREATE TABLE语法通过更改表名来克隆表,从而运行CREATE TABLE查询。
这将创建要与索引一起克隆的表的精确副本。然后,您只需要重命名索引(如果需要)。
要使用索引和触发器进行复制,请执行以下两个查询:
CREATE TABLE new_table LIKE old_table;
INSERT INTO new_table SELECT * FROM old_table;
要仅复制结构和数据,请使用以下方法:
CREATE TABLE new_table AS SELECT * FROM old_table;
我以前问过这个问题:
复制包含索引的MySQL表
转到phpMyAdmin并选择原始表,然后在“复制表到(database.table)”区域中选择“操作”选项卡。选择要复制的数据库并为新表添加名称。