SQL语句创建相同结构的表

--Oracle的语句
create table sa_salaryRecord as select * from sa_salary where 1=2;

--MSSQL的语句
select * into sa_salaryRecord from sa_salary where 1=2;

注:1=2目的是为了防止数据的复制 

原文地址:https://www.cnblogs.com/netcorner/p/3547984.html