can we call a procedure into another procedure?If yes means
how you can pass the perameters for the two procedures?
Answer Posted / madhuri
We can call a procedure into another procedure.
create or replace procedure proc1(empno number) is
begin
proc2(20,'CLERK');
end;
When we execute proc1 as follows
exec proc1(7891);
it will execute proc1 and proc2 as well
Is This Answer Correct ? | 7 Yes | 6 No |
Post New Answer View All Answers
Is record in oracle pl sql?
what are the differences between char and varchar? : Sql dba
how to get @@error and @@rowcount at the same time? : Sql dba
What jobs use sql?
What can you do with pl sql?
How do I pipe the output of one isql to another?
What are inner outer left and right joins in sql?
Why is a trigger used?
What is difference between my sql and sql?
What is cursor in pl sql with examples?
What is user in sql?
What are the different types of a subquery?
How to display Row Number with Records in Oracle SQL Plus?
Explain select statements in sql?
What is synonyms?