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
Are ddl triggers fired for ddl statements within a pl/sql code executed using the dbms.sql package?
Can we call a function containing dml statements in a select query?
What is the use of desc in sql?
How is a process of pl/sql compiled?
Is sql port 1433 encrypted?
What will you get by the cursor attribute sql%rowcount?
What is orm in sql?
What is sql deadlock?
Is sql developer case sensitive?
how to concatenate two character strings? : Sql dba
what is the syntax for using sql_variant_property? : Transact sql
Why commit is not used in triggers?
What are the most important characteristics of pl/sql?
How to select random rows from a table?
How do I start pl sql?