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
Does sql*plus also have a pl/sql engine?
what are the advantages of mysql in comparison to oracle? : Sql dba
What do you mean by field in sql?
what does it mean to have quoted_identifier on? : Sql dba
What is #table in sql?
explain what is mysql? : Sql dba
The select into statement is most often used to create backup copies of tables or for archiving records?
What does where 1 1 mean in sql?
Which tcp/ip port does sql server run on? How can it be changed? : Sql dba
What is the difference between the repeatable read and serializable isolation levels? : Transact sql
What is fmtonly in sql?
What is a primary key example?
What is difference sql and mysql?
What is pl sql script?
What is secondary key?