码迷,mamicode.com
首页 > 其他好文 > 详细

Create table as select

时间:2019-09-16 19:51:16      阅读:105      评论:0      收藏:0      [点我收藏+]

标签:table   col   sele   命名   tables   HERE   表结构   column   size   

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

标签:table   col   sele   命名   tables   HERE   表结构   column   size   

原文地址:https://www.cnblogs.com/itboys/p/11528793.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!