MySQL複製資料表

2021-09-18 04:11:09 字數 496 閱讀 5857

主題:

下面是我在複製表結構以及資料時最常使用的搭配

#table_new 新錶

#table_old 原表

create table_new like table_old #完整複製原表的建表語句以建立新錶

insert into table_new select * from table_old #完整複製原表的資料內容到新錶中

其實說白了就是兩部:

1、建立表結構

2、插入資料

以上就完成了整個表的複製。

拓展

除了上面說的,其實我們還可以用create table select 方法複製表,但是複製後的表結構索引會丟失,不推薦使用

create table_new select #這種方法會將原表的資料完整的複製過來,但是原表結構中的索引會丟失

MySQL 複製資料表

假設現在有張資料表 users create table users userid int 10 unsigned not null username varchar 100 unique passwd varchar 100 default 123456 primary key userid en...

如何對MySQL資料表進行複製 表結構複製

本篇文章為大家介紹如何對mysql進行複製 表結構複製,也可以分欄位進行複製。也可以將一張表中的資料複製到另一張表當中。1 複製表結構 語法 creata table 舊表 select from 新錶 create table t1 id int unsigned auto increment p...

Mysql中資料表的完整複製

將 production 資料庫中的 mytbl 表快速複製為 mytbl new,2個命令如下 1 2create table mytbl new like production.mytbl insert mytbl new select from production.mytbl 第乙個命令是建...