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
what are the advantages of mysql in comparison to oracle? : Sql dba
How do you rename a table in sql?
How many types of sql are there?
What does trigger mean in psychology?
Why truncate is faster than delete?
What is sql catalog?
how to increment dates by 1 in mysql? : Sql dba
Differentiate between pl/sql and sql?
How do you create a db file?
Can delete statement be rollbacked?
How to run pl/sql statements in sql*plus?
What information is needed to connect sql*plus an oracle server?
What is trigger types in sql?
Can we perform dml in function?
Is pl sql a programming language?