how to handle no data found is sybase ? in oracle i can do it like below
BEGIN
select into...
EXCEPTION WHEN NO_DATA_FOUND
do_something
END;
how to handle no data found is sybase ? in oracle i can do it like below
BEGIN
select into...
EXCEPTION WHEN NO_DATA_FOUND
do_something
END;