oracle 存储过程中有关判断语句怎么写

2025-03-22 17:26:57
推荐回答(1个)
回答1:

begin
select 字段 into 变量 from 表名 where 条件;
exception
when no_data_found then
--提示表中没有数据
end;