复制表结构及其数据

create table table_name_new as (select * from table_name_old);

注意:这个语句其实只是把select语句的结果建一个表,所以新表不会有主键,索引。

 

复制表结构

create table table_name_new like table_name_old;

 

复制表数据

如果两个表结构一样

insert into table_name_new select * from table_name_old;

如果两个表结构不一样

insert into table_name_new(column1,column2...) select column1,column2... from table_name_old;

 

相关文章:

  • 2021-12-10
  • 2022-12-23
  • 2021-06-12
  • 2021-09-25
  • 2021-12-19
  • 2022-01-26
猜你喜欢
  • 2021-07-22
  • 2021-10-22
  • 2021-09-14
  • 2022-01-08
相关资源
相似解决方案