存储过程不能直接写查询,需要将查询结果into到变量中或将查询定义成游标。
下面是into到变量的例子。
declare
ll varchar2(50);
begin
select fybm
into ll
from zf_fy
where zf_fy.nodeid = '条件';
-- 这里需要增加异常处理
exception
when no_data_found then -- 未找到数据
--处理
when too_many_rows then -- 找到多行数据
-- 处理
when others then -- 其他异常
-- 处理
end;