Terry's blog

Focus on bigdata and cloud.

博客园 首页 新随笔 联系 订阅 管理
概述:
    比如现有数据表StudentInfo,现要把这个表备份.
实现:
SQL Server做法如下:
select * 
into StudentInfoBackup
 
from StudentInfo
Oracle做法如下:
create table studentinfobackup
 
as 
 
select *  from studentinfo
posted on 2008-03-19 16:54  王晓成  阅读(629)  评论(0编辑  收藏  举报