Stored Procedure: I Gede Mahendra Darmawiguna, S.Kom., M.SC
Stored Procedure: I Gede Mahendra Darmawiguna, S.Kom., M.SC
Procedure
I Gede Mahendra Darmawiguna, S.Kom., M.Sc.
Intro to Stored Procedure
• A stored procedure is a segment of declarative SQL statements stored
inside the database catalog.
• A stored procedure can be invoked by triggers, other stored
procedures, and applications such as Java, Python, PHP.
Stored Procedure in MySQL - Advantages
• Typically stored procedures help increase the performance of the
applications. Once created, stored procedures are compiled and stored in
the database.
• MySQL implements the stored procedures slightly different. MySQL stored
procedures are compiled on demand. After compiling a stored procedure, MySQL
puts it into a cache. And MySQL maintains its own stored procedure cache for every
single connection.
• If an application uses a stored procedure multiple times in a single connection, the
compiled version is used, otherwise, the stored procedure works like a query.
• Stored procedures help reduce the traffic between application and
database server because instead of sending multiple lengthy SQL
statements, the application has to send only name and parameters of the
stored procedure.
Stored Procedure in MySQL – Disadvantages
• Stored procedures are reusable and transparent to any applications.
Stored procedures expose the database interface to all applications so
that developers don’t have to develop functions that are already
supported in stored procedures.
• Stored procedures are secure. The database administrator can grant
appropriate permissions to applications that access stored
procedures in the database without giving any permissions on the
underlying database tables.
Stored Procedure in MySQL - Disadvantages
• If you use many stored procedures, the memory usage of every
connection that is using those stored procedures will increase
substantially.
• Stored procedure’s constructs are not designed for developing
complex and flexible business logic.
• It is difficult to debug stored procedures. Only a few database
management systems allow you to debug stored procedures.
• It is not easy to develop and maintain stored procedures. Developing
and maintaining stored procedures are often required a specialized
skill set that not all application developers possess.
Writing the First MySQL Stored Procedure
• We are going to develop a simple stored procedure named
GetAllProducts() to help you get familiar with the syntax. The
GetAllProducts() stored procedure selects all products from the
products table.
• How it works
• The set_counter stored procedure accepts one INOUT parameter ( count ) and one IN
parameter ( inc ).
• Inside the stored procedure, we increase the counter ( count ) by the value of the inc
parameter.
MySQL Stored Procedures Returns Multiple
Values
MySQL If Statement
• The MySQL IF statement allows you to execute a set of SQL
statements based on a certain condition or value of an expression. To
form an expression in MySQL, you can combine literals, variables,
operators, and even functions. An expression can return one of three
values TRUE FALSE, or NULL.
MySQL If Statement
• Examples
MySQL CASE Statement
• Besides the IF statement, MySQL provides
an alternative conditional statement called CASE. The MySQL CASE
statement makes the code more readable and efficient.
• There are two forms of the CASE statements: simple and searched
CASE statements.
• SIMPLE CASE Statement
MySQL CASE Statement
MySQL CASE Statement
• SEARCH CASE Statement
• The simple CASE statement only allows you match a value of an expression
against a set of distinct values. In order to perform more complex matches
such as ranges, you use the searched CASE statement. The searched CASE
statement is equivalent to the IF statement, however, its construct is much
more readable.
MySQL CASE Statement
MySQL Loop in Stored Procedure
• MySQL provides loop statements that allow you to execute a block of
SQL code repeatedly based on a condition. There are three loop
statements in MySQL: WHILE, REPEAT and LOOP.
MySQL Loop in Stored Procedure
MySQL Loop in Stored Procedure
MySQL Loop in Stored Procedure
• LOOP, LEAVE, and ITERATE
• MySQL also gives you a LOOPstatement that executes a block of code
repeatedly with an additional flexibility of using a loop label.
• The LEAVE statement allows you to exit the loop immediately without waiting
for checking the condition. The LEAVE statement works like
the break statement in other languages such as PHP, C/C++, Java, etc.
• The ITERATE statement allows you to skip the entire code under it and start a
new iteration. The ITERATE statement is similar to the continue statement
in PHP, C/C++, Java, etc.
MySQL Loop Stored Procedure
• The stored procedure only constructs a
string with even numbers e.g., 2, 4, 6, etc.
• We put a loop_label loop label before the
LOOPstatement.
• If the value of x is greater than 10, the loop
is terminated because of the
LEAVE statement.
• If the value of the x is an odd number, the
ITERATE statement ignores everything
below it and starts a new iteration.
• If the value of the x is an even number, the
block in the ELSE statement will build the
string with even numbers.
Intro to MySQL Cursor
• MySQL cursor in stored procedures is used to iterate through a result set
returned by a SELECT statement.
• To handle a result set inside a stored procedure, you use a cursor. A cursor allows
you to iterate a set of rows returned by a query and process each row
accordingly.
• MySQL cursor is read-only, non-scrollable and asensitive.
• Read only: you cannot update data in the underlying table through the cursor.
• Non-scrollable: you can only fetch rows in the order determined by the SELECT statement.
You cannot fetch rows in the reversed order. In addition, you cannot skip rows or jump to a
specific row in the result set.
• Asensitive: there are two kinds of cursors: asensitive cursor and insensitive cursor.
• An asensitive cursor points to the actual data,
• whereas an insensitive cursor uses a temporary copy of the data.
• An asensitive cursor performs faster than an insensitive cursor because it does not have to make a
temporary copy of data. However, any change that made to the data from other connections will affect
the data that is being used by an asensitive cursor, therefore, it is safer if you don’t update the data that
is being used by an asensitive cursor.
• MySQL cursor is asensitive.
MySQL Cursor
• The following diagram illustrates
how MySQL cursor works.
Listing Stored Procedures in a MySQL
Database
• o list all stored procedures of the databases that you have the
privilege to access, you use the SHOW PROCEDURE STATUS
statement as follows
• If you want to show just stored procedure in a particular database,
you can use the WHERE clause in the SHOW PROCEDURE STATUS
statement:
• If you want to show stored procedures that have a particular pattern
e.g., its name contains product:
MySQL Stored Function
• A stored function is a special kind stored program that returns a single
value. You use stored functions to encapsulate common formulas or
business rules that are reusable among SQL statements or stored
programs.
• Different from a stored procedure, you can use a stored function in
SQL statements wherever an expression is used. This helps improve
the readability and maintainability of the procedural code.
• Syntax
MySQL Stored Function
MySQL Stored Function
• We also rewrite the GetCustomerLevel() stored procedure