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
What are some predefined exceptions in pl/sql?
what is a control file ? : Sql dba
Whis is not false in primary key?
What are two statement types in sql?
write an sql query to find names of employee start with 'a'? : Sql dba
What is the difference between inner join and outer join?
What is asqueryable?
Write a query to find the names of users that begin with "um" in sql?
Compare sql & pl/sql
What is synonyms?
what is the difference between delete and truncate statement in sql? : Sql dba
What is sql not null constraint?
What is dml and ddl?
What is a crud api?
What is a trigger word?