Create table as select

Posted itboys

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Create table as select相关的知识,希望对你有一定的参考价值。

create table xxx as select
create table table1 as select * from table2 where 2=3;

根据table2的表结构,创建tables1

create table table1 as select * from table2

根据table2的表结构,创建tables1,同时将table2的数据插入table1

create table table1(column1_rename,column2_rename) as select column1,column2 from table2;

根据table2的表结构,创建tables1,重命名列,并复制数据

以上是关于Create table as select的主要内容,如果未能解决你的问题,请参考以下文章

MySQL create table as与create table like对比

insert table 和create table as 区别

create table as 和create table like的区别

oracle 关于 create temporary table as select……

Create table as select

MySQL的create table as 与 like区别