What are the features of Stored Procedures in MYSQL?
Answer Posted / hrindows@gmail.com
Stored Procedure increases the performance of the applications. Once stored procedures are created, they are compiled and stored in the database.
Stored procedure reduces the traffic between application and database server. Because the application has to send only the stored procedure's name and parameters instead of sending multiple SQL statements.
Stored procedures are reusable and transparent to any applications.
A procedure is always secure. The database administrator can grant permissions to applications that access stored procedures in the database without giving any permission on the database tables.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the latest version of mysql?
How does select query work?
What language is used in mysql?
What happens when the column is set to AUTO INCREMENT and if you reach maximum value in the table?
How can I insert images into a Mysql database?
How do you shutdown a mysql database?
How we can get the current date in mysql?
how can you test for null values in a database? : Mysql dba
Why should I learn mysql?
State the differences between mongodb and mysql.
How you will Show unique records.
What is normalization and list the different types of normalization?
Is mysql a backend?
What is the difference between b-tree and hash indexes?
How to calculate expressions with sql statements?