The Tech Findings of R
Friday, July 2, 2010
RETURN Statement
Can we use RETURN statement in Procedure?
Yes
Check out the Below Sample
create or replace procedure p is
begin
dbms_output.put_line('one');
return;
dbms_output.put_line('two');
end;
exec p;
Would Return
one
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment