oracle代码的常见错误汇总
程序员文章站
2022-06-29 22:03:20
很多使用其他数据库的朋友在转到oracle数据库的时候经常会犯一些习惯性的错误,本文汇总了一些常见的oracle代码错误,供大家查询比对。
1. 插入语句写成:...
很多使用其他数据库的朋友在转到oracle数据库的时候经常会犯一些习惯性的错误,本文汇总了一些常见的oracle代码错误,供大家查询比对。
1. 插入语句写成:
insert into t1 values(...)
应为:
insert into t1(...) values(...)
2.
to_char(sysdate,'yyyymmddhhmmss')
应改为:
to_char(sysdate,'yyyymmddhh24miss')
3.
select count(*) into v_count from t1 where c1=?;
永远不会触发no_data_found错误,应该判断v_count=0
4.返回值问题:
合理的处理办法:
在过程的开始 result:=false;
在过程的结尾 result:=true;
中间不需要对result赋值。
不合理的处理办法:
在过程的开始 result:=true;
中间代码每一处判断不符合时需result:=false赋值。
在过程的结尾不需对result赋值
5.
select c1,c2 in from t1 where c3 = v_c3; if v_c1 = 0 or v_c2 = 0 then
执行该代码找不到时会报错,不会返回0
应该用when no_data_found判断
6.
'... where c1 = ' || v_c1;
c1字段为字符型,要加单引号,否则用不上c1索引,oracle内部转换成了'... where c1 = ' ||chr(39)|| to_char(v_c1)||chr(39);
改为:
where c1 = '||chr(39) ||v_c1||chr(39);
7.如果只判断是否存在数据,应加and rownum<2速度更快
select count(*) into v_count from t1 where c1 = v_c1;
应加条件:and rownum<2
8.
where exists (select * from t1
应为:
where exists (select 'x' from t1
9.
raise_application_error(-20000, infomsg);
不要都用20000错误号
raise_application_error的可用错误号范围为-20000至-20999
推荐阅读
-
网易UU加速器常见错误码原因及解决方法的详细教程
-
steam启动游戏失败错误代码83怎么回事?steam错误代码83的原因及解决方法
-
steam商店错误代码118怎么办?steam错误代码118的解决方法介绍
-
steam错误代码105怎么办?steam连接服务器失败错误代码105的解决方法
-
Oracle中常见的33个等待事件小结
-
QQ登陆不上 QQ登陆错误0x00000001代码的解决方法
-
win10 Build 9926更新出现错误代码0x80240020的解决方法
-
Chrome更新失败出现错误代码:0x00000000的解决方法
-
CuteFTP使用过程中的常见错误问题小结
-
30个常见的电脑蓝屏代码分析及解决方法