代码搜索:ORACLE8i
找到约 74 项符合「ORACLE8i」的源代码
代码结果 74
www.eeworm.com/read/124343/14573611
html 1759.html
linux知识宝库/oracle/ORACLE8I FOR SUN SOLARIS2.7 安装说明
www.eeworm.com/read/327725/13065494
sql create.sql
REM
REM author: 朱伟民, time:15:20 01-8-4
REM 版权 :sinosoft
REM version:1.0
REM 从 oracle8i Enterprise Edition 数据库生成创建对象的脚本文件
REM
--
-- 包头定义
--
CREATE OR REP
www.eeworm.com/read/161040/5563866
txt 删除字段.txt
--删除字段方法1:
CREATE TABLE sm_temp AS
SELECT empid,name,salary,telno
FROM sm_emp;
desc sm_temp;
DROP TABLE sm_emp;
RENAME sm_temp TO sm_emp;
--在oracle8i以后的版本可以使用alter table .. drop colu