can we use out parameter in a function?Give an example.
Answer Posted / parivesh sinha
yes.
create or replace function p_tst (v_p out varchar2) return
varchar as
v_g varchar2(50);
begin
select ENAME2 into v_p from emp where empno='11';
return v_p;
end;
| Is This Answer Correct ? | 18 Yes | 5 No |
Post New Answer View All Answers
When do we use triggers?
What does trigger mean in slang?
Can we use update in sql function?
what are date and time data types in mysql? : Sql dba
Why should I use postgresql?
How do I view a procedure in sql?
Is it possible for a table to have more than one foreign key?
what are the differences between binary and varbinary? : Sql dba
What is the difference between truncate and drop statements?
What is query optimization in sql?
what are numeric data types? : Sql dba
what is self join and what is the requirement of self join? : Sql dba
Is and as keyword in pl sql?
What are all different types of collation sensitivity?
How does stored procedure reduce network traffic?