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 do you think about pl/sql?
What is self-join and what is the requirement of self-join?
Is a foreign key always unique?
What is a pragma statement?
How do you identify a primary key?
What is meant by truncate in sql?
Write the alter statement to enable all the triggers on the t.students table.
How do I clear the screen in sql plus?
What is the difference between clustered and non-clustered index in sql?
Is nosql faster than sql?
What is the default isolation level in sql server? : Transact sql
How do I send sql query results to excel?
What are the query optimization techniques?
What are predefined functions in sql?
What is the command used to fetch first 5 characters of the string?