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 is table? : Sql dba
How do I truncate a word?
Explain what is an index?
How many databases can sql express handle?
how to drop an existing table in mysql? : Sql dba
what are the limitations of identity column? : Transact sql
Which is faster joins or subqueries?
What is fmtonly in sql?
how to include character strings in sql statements? : Sql dba
What is scalar and vector?
what are myisam tables? : Sql dba
What is pls_integer in pl sql?
What is trigger types of trigger?
Can one improve the performance of sql*loader? : aql loader
How to display the current date in sql?