笔记通过查询创建表
Oracle 感觉语法比较易读:
www.2cto.com
Java代码
create table1 as select * from table2;
SqlServer 用
Oracle的方式行不通,搜索发现下面的方法:
www.2cto.com
Java代码
select * into T_TableRecordDetail from V_TableRecordDetail where 1=2;