解决 ORA-01403: no data found 数据未找到

解决方法一:加一个exception异常处理

当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;

就可以了

 

解决方法二:更改select语句,如:

  select count(*) field into var from table where ....

增加一个count(*)即使没有找到数据,也会返回0,而不是null。

你可能感兴趣的:(Data)