pl sql exception when no data found code example
Example: no data found oracle
BEGIN
select... into...
EXCEPTION WHEN NO_DATA_FOUND THEN
do_something
END;
BEGIN
select... into...
EXCEPTION WHEN NO_DATA_FOUND THEN
do_something
END;