--create table test as select * from T1 where 1=2; --复制表结构,不复制数据--select * from test;--create table test2 as select * from T1;--复制整个表到test2--select * from test2;--insert into test select * from T1;--将

- 阅读全文 -