how do u call in & out parameters for stored procedures?
Answer Posted / madhav
create or replace procedure proc_in_out
(p_empno in number,p_ename out varchar2)
as
begin
.......
.......
end;
execute proc_in_out(7369,p_ename)--out parameter can't
like this
declare
v_ename varchar2(10);
begin
proc_in_out(7369,v_ename);
end;
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is multiple columns?
how would you enter characters as hex numbers? : Sql dba
what is commit? : Sql dba
what is union? : Sql dba
Explain the difference between triggers and constraints?
Is microsoft sql free?
What is trigger in pl sql?
how does a local variable is defined using t-sql? : Transact sql
What is pl sql collection?
What are synonyms in sql?
What is the difference between Union and Union all. Which is faster.
Is sql better than excel?
Why are indexes and views important to an organization?
When a dml statement is executed, in which cursor attributes, the outcome of the statement is saved?
How do I view a sql trace file?