SqlServer select * into 对应 Oracle语法

Posted Twang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SqlServer select * into 对应 Oracle语法相关的知识,希望对你有一定的参考价值。

创建新表,并插入旧表值

Sql Server

select * into new_emp from emp;

Oracle

create table new_emp as select * from emp;

 

以上是关于SqlServer select * into 对应 Oracle语法的主要内容,如果未能解决你的问题,请参考以下文章

使用 SELECT ... INTO 在 SQL Server 中创建表

select into from 与 select into from opendatasource

sqlserver MERGE INTO 用法

Postgresql存储过程select into temp table。

oracle 中SQL 语句开发语法 SELECT INTO含义

SQLiteselect into 语句