what is difference between procedure and function
Answer Posted / nannesaheb chinthalacheruvu
Procedure :
->Procedure is a Named PL/SQL Block which can be stored in
Database in compile form.
->Procedure is used to execute the Perticular task.
->Procedure Does not required RETURN clause.
->Procedure Does not Return value
->It is not posible to execute using SQL statements.
->Procedures can be execute using a)Execute/Call,b)Anonymous
Block
Function :
->Function is a Named PL/SQL Block Which can be Stored in
Database in Compile Form.
->Function is used for Calculation Perpose.
->Fuction Does Contains RETURN Type
->Fuction Can Return only One Value.
->Fuction can Execute using SQL Statements when We can not
Perform any DML Operations in Function.
->Using Out Mode Parameters we can Return Multiple Records
in Function.
Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Why indexing is needed?
How can you know that statistics should be updated?
Is null operator in sql?
What is an exception in PL/SQL? What are the two types of exceptions?
Is coalesce faster than isnull?
What is foreign key and example?
What does plv msg allows you to do?
how is myisam table stored? : Sql dba
How many types of primary keys are there?
what is the difference between mysql_fetch_array and mysql_fetch_object? : Sql dba
How do I truncate a word?
What are the types of triggers in sql?
What is a left join?
What is sql profiling in oracle?
What is trigger in sql? Explain