日期:2014-05-16 浏览次数:20521 次
在存储过程中,select name into v_name from table where 条件? 的时候,如果没有查询到数据,
就不能将v_name进行赋值,就会抛出no_data_found异常,程序不能继续执行
解决:select count(*) into v_count from from table where 条件 ;
if(v_count<>0) then
select name into v_name from table where 条件;
end if;
?
?
?
?