oracle创建一个表同已存在表结构一样(或者同时将数据导入) –只是建立ta表,与emp表结构相同,并不添加数据
–这种构造与现存表相同结构的表,是不会将comment带过来的
create table ta as select * from scott.emp where 1=0;
–建立tb表,结构与dept结构相同,将dept表中的数据导入其中
–这种构造与现存表相同结构的表,是不会将comment带过来的:
create table tb as select * from scott.dept where 1=1;