List the differences between plsql - function & procedures
Answers were Sorted based on User's Feedback
Answer / lavanya
functions:
1.The parameters are input values and output values
2.The functions will return a value
3.The functions will be called with in sql
Procedures:
1.The parameters are input values and output values
2.The procedures will not return any value
3.The procedures will not be called with in sql
Is This Answer Correct ? | 8 Yes | 1 No |
Answer / iamanocp
Proceure performs an action and function returns a value.
Both have different syntax for creation. Fucntion has
RETURN clause in its declaration.
Is This Answer Correct ? | 2 Yes | 1 No |
What is type and rowtype in pl sql?
we have a package and we have grants to execute that package inside of that we have table, here we don't have privileges to this table? whether this package will execute or not?
What is the use of sqlerrd 3?
What is the purpose of a sql?
What is database migration?
Which command is used to call a stored procedure?
What is a primary key, and how is it different from a unique key?
What is Overloading of procedures ?
Explain mutating table error.
What is the use of & in pl sql?
What is the difference between nested table and varray?
How pl/sql source code can be protected?