| 1. |
Explain About The Process Which Takes Place To Execute A Stored Routine? |
|
Answer» CREATE PROCEDURE and CREATE FUNCTION statement are USED to create stored routine. It can act as a function or a procedure. A procedure can be called by using a CALL statement and pass output with the help of output VARIABLES. It can call other Stored routines and it can be called from the INSIDE of a statement. CREATE PROCEDURE and CREATE FUNCTION statement are used to create stored routine. It can act as a function or a procedure. A procedure can be called by using a call statement and pass output with the help of output variables. It can call other Stored routines and it can be called from the inside of a statement. |
|