Duplicating a MySQL table, indices, and data(复制 MySQL 表、索引和数据)
问题描述
我如何复制或克隆或复制数据、结构、并将 MySQL 表的索引转换为新表?
How do I copy or clone or duplicate the data, structure, and indices of a MySQL table to a new one?
这是我目前发现的.
这将复制数据和结构,但不是指数:
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};
推荐答案
要使用索引和触发器进行复制,请执行以下 2 个查询:
To copy with indexes and triggers do these 2 queries:
CREATE TABLE new_table LIKE old_table;
INSERT INTO new_table SELECT * FROM old_table;
要复制结构和数据,请使用此:
To copy just structure and data use this one:
CREATE TABLE new_table AS SELECT * FROM old_table;
我以前问过这个:
复制一个 MySQL 表,包括索引
这篇关于复制 MySQL 表、索引和数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:复制 MySQL 表、索引和数据
基础教程推荐
- MySQL根据从其他列分组的值,对两列之间的值进行求和 2022-01-01
- CHECKSUM 和 CHECKSUM_AGG:算法是什么? 2021-01-01
- while 在触发器内循环以遍历 sql 中表的所有列 2022-01-01
- 带更新的 sqlite CTE 2022-01-01
- ORA-01830:日期格式图片在转换整个输入字符串之前结束/选择日期查询的总和 2021-01-01
- MySQL 5.7参照时间戳生成日期列 2022-01-01
- 从字符串 TSQL 中获取数字 2021-01-01
- 带有WHERE子句的LAG()函数 2022-01-01
- 如何在 CakePHP 3 中实现 INSERT ON DUPLICATE KEY UPDATE aka upsert? 2021-01-01
- 使用 VBS 和注册表来确定安装了哪个版本和 32 位 2021-01-01
