Answer Posted / guest
Procedure is a stored database object and can be called
when is required. Procedure can have three parameters
IN,INOUT,OUT .IN is default parameter in a Procedure.
Ideally Procedure doesn't return a value but if required
same can be achieve throug OUT Parameter.
Syntex is :
CREATE OR REPLACE PROCEDURE <<Procedure Name>>
(<<PARAMETERLIST DATATYPE>>
IS
BEGIN
<<Code Here>>;
END <<Procedure Name>>;
In procedure arguments datatype size is not required.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
how to convert character strings to numeric values? : Sql dba
How do you modify a column in sql?
Is sql a dbms?
What are the different tcl commands in sql?
What are different methods to trace the pl/sql code?
Define overloaded procedure?
How can a pl sql block be executed?
what are the advantages and disadvantages of views in a database? : Sql dba
What is meaning of <> in sql?
What is the difference between microsoft access and sql?
What is difference between function and trigger?
What is a sql statement?
What is rename in sql?
Is sql a programming?
Explain locks? : Transact sql