关于oracle存储过程的若干问题备忘

文章作者 100test 发表时间 2007:06:26 12:39:32
来源 100Test.Com百考试题网


1.在oracle中,数据表别名不能加as,如:


0select a.appname from appinfo a.-- 正确
0select a.appname from appinfo as a.-- 错误
也许,是怕和oracle中的存储过程中的关键字as冲突的问题吧
2.在存储过程中,0select某一字段时,后面必须紧跟into,如果0select整个记录,利用游标的话就另当别论了。
0select af.keynode into kn from APPFOUNDATION af where af.appid=aid and af.foundationid=fid.-- 有into,正确编译
0select af.keynode from APPFOUNDATION af where af.appid=aid and af.foundationid=fid.-- 没有into,编译报错,提示:Compilation
Error: PLS-00428: an INTO clause is expected in this SELECT statement

3.在利用0select...into...语法时,必须先确保数据库中有该条记录,否则会报出"no data found"异常。

可以在该语法之前,先利用0select count(*) from 查看数据库中是否存在该记录,如果存在,再利用0select...into...

4.在存储过程中,别名不能和字段名称相同,否则虽然编译可以通过,但在运行阶段会报错

0select keynode into kn from APPFOUNDATION where appid=aid and foundationid=fid.-- 正确运行
0select af.keynode into kn from APPFOUNDATION af where af.appid=appid and af.foundationid=foundationid.-- 运行阶段报错,提示
ORA-01422:exact fetch returns more than requested number of rows

src="/oracle/js/wxgg_oracle.js">

相关文章


简析Oracle数据库最大可用性体系结构
使用一条SQL语句删除表中重复记录
精细分析Oracle分布式系统数据复制技术
通过实例来教你如何配置Oracle监听器
关于oracle存储过程的若干问题备忘
数据库中如何使用SQL查询连续号码段
RMAN备份恢复之归档日志对BLOCKRECOVER的影响
改变非归档模式的Oracle数据库
轻松四步帮你解决不能一次创建多表问题
澳大利亚华人论坛
考好网
日本华人论坛
华人移民留学论坛
英国华人论坛