让姐郁闷了2个小时的ORACLE:ORA-01403: no data found 数据未找到 解决

在SQL Navigator 5下不会给出dbms_output.put_line()就是不给我报提示信息。火大!!!!

 

后来换了个SqlDbx,就输出提示:ORA-01403: no data found 数据未找到。

 

上网BAIDU一下:

 

当SQL语句:select P into v_rate from classpoint    where rtrim(classcode) = :new.code; 执行时

如果没有查询到结果就会报错:数据未找到

修改为:

begin
       select P into v_rate from classpoint    where rtrim(classcode) = :new.code;
exception
     when no_data_found then
        v_rate := 1;
end;

就可以了。

 

 

没找到那样的记录,就会抛出EXCEPTION。我晕。

放置到我的包里,姐喜极而泣啊!真崩溃!!!!

你可能感兴趣的:(oracle,sql,exception)