浅谈create table as select

来源:互联网 发布:电视直播软件哪个清楚 编辑:程序博客网 时间:2024/06/10 12:01

--只是建立ta表,与emp表结构相同,并不添加数据

--这种构造与现存表相同结构的表,是不会将comment带过来的

create table t1 as select * from scott.emp where 1=0; 



--建立tb表,结构与dept结构相同,将dept表中的数据导入其中

--这种构造与现存表相同结构的表,是不会将comment带过来的:

create table t2 as select * from scott.dept where 1=1;



0 0