摘要:
--创建表空间和数据库文件及默认表空间大小create tablespace twf_orcl datafile 'D:\oracle\install\product\11.2.0\ORADATA\ORCL\twf_orcl.DBF' size 200m;--设置数据库自动增长alter datab 阅读全文
摘要:
1.在oracle中,数据表别名不能加as,如: select a.appname from appinfo a;-- 正确select a.appname from appinfo as a;-- 错误 也许,是怕和oracle中的存储过程中的关键字as冲突的问题吧 select a.appnam 阅读全文
摘要:
存储过程创建语法: create or replace procedure 存储过程名(param1 in type,param2 out type) as 变量1 类型(值范围); 变量2 类型(值范围); Begin Select count(*) into 变量1 from 表A where列 阅读全文