Terry's blog

Focus on bigdata and cloud.

博客园 首页 新随笔 联系 订阅 管理

2008年3月19日 #

摘要: 概述: Oralce在begin 和end 之间创建数据表时,会出现如标题的错误。 语句如下: begin create table create table studentinfobackup as select * from studentinfo end; 按下F8进行执行语句会出现如下错误 解决办法: begin ... 阅读全文
posted @ 2008-03-19 17:06 王晓成 阅读(8230) 评论(0) 推荐(0) 编辑

摘要: 概述: 比如现有数据表StudentInfo,现要把这个表备份. 实现: SQL Server做法如下: select * into StudentInfoBackup from StudentInfo Oracle做法如下: create table studentinfobackup as select * from studentinfo 阅读全文
posted @ 2008-03-19 16:54 王晓成 阅读(629) 评论(0) 推荐(0) 编辑