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
What are joins in sql?
tell us something about heap tables. : Sql dba
How can we link a sql database to an existing android app?
Is foreign key mandatory?
What is meant by temporal data?
What is implicit cursor in pl sql?
what is recursive stored procedure? : Sql dba
what is the difference between primary key and unique key? : Sql dba
what are myisam tables? : Sql dba
Explain what is table in a database?
What are the different types of triggers?
How many databases can sql express handle?
What is the requirement of self-join?
What does pragma mean?
Which one is faster ienumerable or iqueryable?