MySql教程

Mysql复制表数据

本文主要是介绍Mysql复制表数据,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

select into from(mysql不支持) 和 insert into select 都是用来复制表

两者的主要区别为: select into from 要求目标表不存在,因为在插入时会自动创建;insert into select from 要求目标表存在。

  1. 复制表结构及其数据:
create table table_name_new as select * from table_name_old
  1. 只复制表结构:
create table table_name_new as select * from table_name_old where 1=2;

或者:

create table table_name_new like table_name_old
  1. 只复制表数据:

如果两个表结构一样:

insert into table_name_new select * from table_name_old

如果两个表结构不一样:

insert into table_name_new(column1,column2...) select column1,column2... from table_name_old
这篇关于Mysql复制表数据的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!