Oracle与SQL Server 备份数据表的区别

概述:
    比如现有数据表StudentInfo,现要把这个表备份.
实现:
SQL Server做法如下:
select * 
into StudentInfoBackup
 
from StudentInfo
Oracle做法如下:
create table studentinfobackup
 
as 
 
select *  from studentinfo
原文地址:https://www.cnblogs.com/abcdwxc/p/1113443.html