SqlServer select * into 对应 Oracle语法
创建新表,并插入旧表值
Sql Server
select * into new_emp from emp;
Oracle
create table new_emp as select * from emp;
创建新表,并插入旧表值
Sql Server
select * into new_emp from emp;
Oracle
create table new_emp as select * from emp;