how do u call in & out parameters for stored procedures?
Answer Posted / sangeetha
create or replace procedure <pocedure_name>(x in number,y
out varchar) is begin
{
executable statements;
}
end <procedure_name>;
exec <procedure_name>(first_parameter,second_parameter);
Is This Answer Correct ? | 6 Yes | 3 No |
Post New Answer View All Answers
What is the difference between functions, procedures, and packages in pl/sql?
What is the difference between a primary key and a clustered index?
Explain raise_application_error.
How can the performance of a trigger be improved?
Can a table contain multiple primary key’s?
What are sql indexes?
what is primary key? : Sql dba
Where is pl sql used?
What are triggers and its types?
What language is oracle sql developer?
How do I view output in sql developer?
How do you truncate?
What is primary and foreign key?
Can we use two order by clause in query?
What is varchar sql?