BIT275: Database Design (Fall 2015)

Slides:



Advertisements
Similar presentations
AN INTRODUCTION TO PL/SQL Mehdi Azarmi 1. Introduction PL/SQL is Oracle's procedural language extension to SQL, the non-procedural relational database.
Advertisements

Programming with Alice Computing Institute for K-12 Teachers Summer 2011 Workshop.
Instructor: Craig Duckett CASE, ORDER BY, GROUP BY, HAVING, Subqueries
Chapter 4B: More Advanced PL/SQL Programming
VBA Modules, Functions, Variables, and Constants
Introduction to Structured Query Language (SQL)
Module 9: Implementing Stored Procedures. Introduction to Stored Procedures Creating Executing Modifying Dropping Using Parameters in Stored Procedures.
A Guide to Oracle9i1 Advanced SQL And PL/SQL Topics Chapter 9.
Fundamentals, Design, and Implementation, 9/e Chapter 7 Using SQL in Applications.
Concepts of Database Management Sixth Edition
Chapter 7 Managing Data Sources. ASP.NET 2.0, Third Edition2.
Stored Procedures Dr. Ralph D. Westfall May, 2009.
Chapter Seven Advanced Shell Programming. 2 Lesson A Developing a Fully Featured Program.
Using Data Active Server Pages Objectives In this chapter, you will: Learn about variables and constants Explore application and session variables Learn.
A First Program Using C#
A Guide to SQL, Eighth Edition Chapter Three Creating Tables.
PL / SQL P rocedural L anguage / S tructured Q uery L anguage Chapter 7 in Lab Reference.
DAVID M. KROENKE’S DATABASE PROCESSING, 10th Edition © 2006 Pearson Prentice Hall 7-1 David M. Kroenke’s Chapter Seven: SQL for Database Construction and.
Cursor and Exception Handling By Nidhi Bhatnagar.
ASP.NET Programming with C# and SQL Server First Edition
IMS 4212: Application Architecture and Intro to Stored Procedures 1 Dr. Lawrence West, Management Dept., University of Central Florida
C++ for Engineers and Scientists Third Edition
Chapter 4 The Relational Model 3: Advanced Topics Concepts of Database Management Seventh Edition.
PROGRAMMING IN VISUAL BASIC.NET VISUAL BASIC BUILDING BLOCKS Bilal Munir Mughal 1 Chapter-5.
Dinamic SQL & Cursor. Why Dinamic SQL ? Sometimes there is a need to dynamically create a SQL statement on the fly and then run that command. This can.
TRAINING SESSIONS SQL Server Basics Design By.:.Net Prepared By:Dilip Namdeo Dated:23-Dec-09 Reference Site:
Overview · What is PL/SQL · Advantages of PL/SQL · Basic Structure of a PL/SQL Block · Procedure · Function · Anonymous Block · Types of Block · Declaring.
Triggers and Stored Procedures in DB 1. Objectives Learn what triggers and stored procedures are Learn the benefits of using them Learn how DB2 implements.
Database Design and Management CPTG /23/2015Chapter 12 of 38 Functions of a Database Store data Store data School: student records, class schedules,
CpSc 462/662: Database Management Systems (DBMS) (TEXNH Approach) Stored Procedure James Wang.
6 1 Lecture 8: Introduction to Structured Query Language (SQL) J. S. Chou, P.E., Ph.D.
INFO1408 Database Design Concepts Week 15: Introduction to Database Management Systems.
Database Systems Design, Implementation, and Management Coronel | Morris 11e ©2015 Cengage Learning. All Rights Reserved. May not be scanned, copied or.
Chapter 15 Introduction to PL/SQL. Chapter Objectives  Explain the benefits of using PL/SQL blocks versus several SQL statements  Identify the sections.
Advanced SQL: Triggers & Assertions
What is a Package? A package is an Oracle object, which holds other objects within it. Objects commonly held within a package are procedures, functions,
PL/SQLPL/SQL Oracle10g Developer: PL/SQL Programming Chapter 9 Database Triggers.
Chapter 9: Advanced SQL and PL/SQL Guide to Oracle 10g.
INSERT BOOK COVER 1Copyright © 2012 Pearson Education, Inc. Publishing as Prentice Hall. Exploring Getting Started with VBA for Microsoft Office 2010 by.
A Guide to SQL, Eighth Edition Chapter Eight SQL Functions and Procedures.
8 Chapter Eight Server-side Scripts. 8 Chapter Objectives Create dynamic Web pages that retrieve and display database data using Active Server Pages Process.
Chapter 5 : Integrity And Security  Domain Constraints  Referential Integrity  Security  Triggers  Authorization  Authorization in SQL  Views 
IT System Administration Lesson 3 Dr Jeffrey A Robinson.
Professor: Dr. Shu-Ching Chen TA: Hsin-Yu Ha Function, Trigger used in PosgreSQL.
1 Intro stored procedures Declaring parameters Using in a sproc Intro to transactions Concurrency control & recovery States of transactions Desirable.
Learningcomputer.com SQL Server 2008 –Views, Functions and Stored Procedures.
Instructor: Craig Duckett Lecture 07: Tuesday, October 20 th, 2015 Conflicts and Isolation, MySQL Workbench 1 BIT275: Database Design (Fall 2015)
Stored Procedures / Session 4/ 1 of 41 Session 4 Module 7: Introducing stored procedures Module 8: More about stored procedures.
IMS 4212: Application Architecture and Intro to Stored Procedures 1 Dr. Lawrence West, Management Dept., University of Central Florida
Text TCS INTERNAL Oracle PL/SQL – Introduction. TCS INTERNAL PL SQL Introduction PLSQL means Procedural Language extension of SQL. PLSQL is a database.
1 CSC160 Chapter 1: Introduction to JavaScript Chapter 2: Placing JavaScript in an HTML File.
SQL Triggers, Functions & Stored Procedures Programming Operations.
4 - Conditional Control Structures CHAPTER 4. Introduction A Program is usually not limited to a linear sequence of instructions. In real life, a programme.
BTM 382 Database Management Chapter 8 Advanced SQL Chitu Okoli Associate Professor in Business Technology Management John Molson School of Business, Concordia.
Dynamic SQL Writing Efficient Queries on the Fly ED POLLACK AUTOTASK CORPORATION DATABASE OPTIMIZATION ENGINEER.
1. Advanced SQL Functions Procedural Constructs Triggers.
SQL Database Management
INLS 623– Stored Procedures
Data Virtualization Tutorial: Introduction to SQL Script
Stored Procedures.
SQL and SQL*Plus Interaction
Instructor: Jason Carter
PL/SQL.
Views, Stored Procedures, Functions, and Triggers
Dynamic SQL Writing Efficient Queries on the Fly
Intro to PHP & Variables
PL/SQL Scripting in Oracle:
Chapter 8 Advanced SQL.
Information Management
CodePainter Revolution Trainer Course
Presentation transcript:

BIT275: Database Design (Fall 2015) Instructor: Craig Duckett Lecture 14: Tuesday, November 17th, 2015 Stored Procedures (SQL Server) and MySQL

Final Exam is LECTURE 20, Thursday, December 10th We will be looking at Microsoft SQL Server, Azure, virtual server, and Visual Studio until the end of the quarter. Schedule updated on Lecture page. Assignment 3 is due LECTURE 19, Tuesday, December 8th, in StudentTracker by MIDNIGHT Final Exam is LECTURE 20, Thursday, December 10th

Tuesday/Thursday (LECTURE 14) Database Design for Mere Mortals: Chapters 10, 11

Stored Procedures (SQL Server) Stored Procedure Slides (MySQL, FOR REFERENCE ONLY)

What Are Stored Procedures ?

Stored Procedures Up until now, all of our data retrieval has been accomplished with a single statement. Even the use of subqueries was accomplished by combining two SELECTs into a single statement. We’re now going to discuss a new scenario in which multiple statements can be saved into a single object known as a stored procedure. A Stored Procedure is a set of SQL statements, compiled and stored as a single database object for repeated use. It is used to get information from the database or change data in the database It is used by application programs (along with views) It can use zero or more parameters It is run using an EXECUTE statement (in MS SQL SERVER) or CALL (in MySQL) with the procedure name and any parameter values It is built using a CREATE PROCEDURE statement.

Stored Procedures In broad terms, there are two general reasons why you might want to use stored procedures: ■ To save multiple SQL statements in a single procedure ■ To use parameters in conjunction with your SQL statements Stored procedures can, in fact, consist of a single SQL statement and contain no parameters. But the real value of stored procedures becomes evident when they contain multiple statements or parameters. This is something that relates directly to the issue of how to best retrieve data from a database.

Stored Procedures Basically, the ability to store multiple statements in a procedure means that you can create complex logic and execute it all at once as a single transaction. For example, you might have a business requirement to take an incoming order from a customer and quickly evaluate it before accepting it from the customer. This procedure might involve: checking to make sure that the items are in stock verifying that the customer has a good credit rating getting an initial estimate as to when it can be shipped This situation would require multiple SQL statements with some added logic to determine what kind of message to return if all were not well with the order. All of that logic could be placed into a single stored procedure, which would enhance the modularity of the system. With everything in one procedure, that logic could be executed from any calling program, and it would always return the same result.

Stored Procedures Why Use Stored Procedures? One of the most beneficial reasons to use stored procedures is the added layer of security that can be placed on the database from the calling application. If the user account created for the application or web site is configured with permissions only then the underlying tables cannot be accessed directly by the user account. This helps prevent hacking directly into the database tables. The risk of a hacker using the user account to run a stored procedure that has been written by you is far safer than having the user account have full insert, update and delete authority on the tables directly.

Stored Procedures Benefits of Stored Procedures Modular Programming – You can write a stored procedure once, then call it from multiple places in your application. Performance - Stored procedures provide faster code execution and reduce network traffic. Faster execution: Stored procedures are parsed and optimized as soon as they are created and the stored procedure is stored in memory. This means that it will execute a lot faster than sending many lines of SQL code from your application to the SQL Server. Doing that requires SQL Server to compile and optimze your SQL code every time it runs. Reduced network traffic: If you send many lines of SQL code over the network to your SQL Server, this will impact on network performance. This is especially true if you have hundreds of lines of SQL code and/or you have lots of activity on your application. Running the code on the SQL Server (as a stored procedure) eliminates the need to send this code over the network. The only network traffic will be the parameters supplied and the results of any query. Security - Users can execute a stored procedure without needing to execute any of the statements directly. Therefore, a stored procedure can provide advanced database functionality for users who wouldn't normally have access to these tasks, but this functionality is made available in a tightly controlled way.

Stored Procedures Disadvantages of Stored Procedures Increased load on the database server — most of the work is done on the server side, and less on the client side. There’s a decent learning curve. You’ll need to learn not only the syntax of SQL statements in order to write stored procedures, but the particular "dialect" of the DBMS managing them (e.g., SSQL Server T-SQL vs. MySQL vs Oracle vs DBs) You are repeating the logic of your application in two different places: your server code and the stored procedures code, making things a bit more difficult to maintain. Migrating to a different database management system (MySQL, SQL Server, Oracle, DB2, etc) may potentially be more difficult.

Stored Procedures (SQL Server and T-SQL) Summary Overview A stored procedure is nothing more than prepared SQL code that you save so you can reuse the code over and over again. So if you think about a query that you write over and over again, instead of having to write that query each time you would save it as a stored procedure and then just call the stored procedure to execute the SQL code that you saved as part of the stored procedure. In addition to running the same SQL code over and over again you also have the ability to pass parameters to the stored procedure, so depending on what the need is the stored procedure can act accordingly based on the parameter values that were passed. http://www.codeproject.com/Articles/38682/Overview-of-SQL-Server-Stored-Procedure http://www.mssqltips.com/sqlservertip/1495/getting-started-with-sql-server-stored-procedures/

Stored Procedures with SQL Server and T-SQL Different Options for Creating SQL Server Stored Procedures There are various options that can be used to create stored procedures. In these next few topics we will discuss creating a simple stored procedure to more advanced options that can be used when creating stored procedures. Creating a simple stored procedure Using input parameters Using output parameters Using Try Catch (REFERENCE LINK ONLY)

SelectCustomers Stored Procedure

Stored Procedures with SQL Server and T-SQL Creating a Simple Stored Procedure As mentioned in the overview a stored procedure is nothing more than stored SQL code that you would like to use over and over again. In this example we will look at creating a simple stored procedure. Explanation Before you create a stored procedure you need to know what your end result is, whether you are selecting data, inserting data, etc.. In this simple example we will just select specific data from the Customer table that is stored in the Northwind database.

Stored Procedures with SQL Server and T-SQL To create a simple stored procedures in Object Explorer Expand the Northwind database in SQL Server > Object Explorer. Expand the Programmability folder and right-click on Stored Procedures and select New Stored Procedure

Stored Procedures with SQL Server and T-SQL This will create a stored procedure template from the Template Explorer

Stored Procedures with SQL Server and T-SQL Replace the template CREATE PROCEDURE code with the following, then Execute: CREATE PROCEDURE SelectCustomers AS SET NOCOUNT ON; SELECT CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax FROM Customers SET NOCOUNT ON: Stops the message that shows the count of the number of rows affected by a Transact-SQL statement or stored procedure from being returned as part of the result set.

Stored Procedures with SQL Server and T-SQL The new SelectCustomers stored procedure is now part of the Stored Procedures folder (you may have to right-click and select Refresh to have it show up)

Stored Procedures with SQL Server and T-SQL To run the SelectCustomers, right-click on it and select Execute Stored Procedure (then click Go on the Execute Stored Procedure window) You could have also just run a query using EXECUTE SelectCustomers (or EXEC SelectCustomers for short)

InsertCustomers Stored Procedure

Stored Procedures with SQL Server and T-SQL To create a stored procedures with parameters Expand the Northwind database in SQL Server > Object Explorer. Expand the Programmability folder and right-click on Stored Procedures and select New Stored Procedure

Stored Procedures with SQL Server and T-SQL This will create a stored procedure template from the Template Explorer

Stored Procedures with SQL Server and T-SQL Replace the template CREATE PROCEDURE code with the following InsertCustomers, then Execute: CREATE PROCEDURE InsertCustomers ( @CustomerID nchar(5), @CompanyName nvarchar(40), @ContactName nvarchar(30), @ContactTitle nvarchar(30), @Address nvarchar(60), @City nvarchar(15), @Region nvarchar(15), @PostalCode nvarchar(10), @Country nvarchar(15), @Phone nvarchar(24), @Fax nvarchar(24) ) AS SET NOCOUNT OFF; INSERT INTO Customers ([CustomerID], [CompanyName], [ContactName], [ContactTitle], [Address], [City], [Region], [PostalCode], [Country], [Phone], [Fax]) VALUES (@CustomerID, @CompanyName, @ContactName, @ContactTitle, @Address, @City, @Region, @PostalCode, @Country, @Phone, @Fax);

NOTE: The InsertCustomers stored procedure is added to the Northwind database. Notice that the procedure definition will change from CREATE PROCEDURE to ALTER PROCEDURE when you execute it.

Stored Procedures with SQL Server and T-SQL To run the InsertCustomers, right-click on it and select Execute Stored Procedure (fill in the required data then click Go on the Execute Stored Procedure window)

Stored Procedures with SQL Server and T-SQL You could have also just run a query using EXECUTE InsertCustomers (or EXEC InsertCustomers for short) as such: EXEC InsertCustomers WIN, WinkusWare, 'Rex Winkus', CEO, '123 Main', Bothell, West, 98011, USA, 4255551234, Null

Stored Procedures with SQL Server and T-SQL Right-clicking and running a Select Top 1000 Rows on the Customers table will display the new customer row that was added:

UpdateCustomers Stored Procedure

Stored Procedures with SQL Server and T-SQL To create a stored procedures to alter parameters Expand the Northwind database in SQL Server > Object Explorer. Expand the Programmability folder and right-click on Stored Procedures and select New Stored Procedure

Stored Procedures with SQL Server and T-SQL This will create a stored procedure template from the Template Explorer

Stored Procedures with SQL Server and T-SQL Replace the template CREATE PROCEDURE code with the following UpdateCustomers, then Execute: CREATE PROCEDURE UpdateCustomers ( @CustomerID nchar(5), @CompanyName nvarchar(40), @ContactName nvarchar(30), @ContactTitle nvarchar(30), @Address nvarchar(60), @City nvarchar(15), @Region nvarchar(15), @PostalCode nvarchar(10), @Country nvarchar(15), @Phone nvarchar(24), @Fax nvarchar(24), @Original_CustomerID nchar(5) ) AS SET NOCOUNT OFF; UPDATE Customers SET [CustomerID] = @CustomerID, [CompanyName] = @CompanyName, [ContactName] = @ContactName, [ContactTitle] = @ContactTitle, [Address] = @Address, [City] = @City, [Region] = @Region, [PostalCode] = @PostalCode, [Country] = @Country, [Phone] = @Phone, [Fax] = @Fax WHERE (([CustomerID] = @Original_CustomerID)); SELECT CustomerID, CompanyName, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax FROM Customers WHERE (CustomerID = @CustomerID)

Stored Procedures with SQL Server and T-SQL To run the UpdateCustomers, right-click on it and select Execute Stored Procedure (fill in the required data then click Go on the Execute Stored Procedure window)

Right-clicking and running a Select Top 1000 Rows on the Customers table will display the customer row that was altered:

DeleteCustomers Stored Procedure

Stored Procedures with SQL Server and T-SQL To create a stored procedures to delete Customer row Expand the Northwind database in SQL Server > Object Explorer. Expand the Programmability folder and right-click on Stored Procedures and select New Stored Procedure

Stored Procedures with SQL Server and T-SQL This will create a stored procedure template from the Template Explorer

Stored Procedures with SQL Server and T-SQL Replace the template CREATE PROCEDURE code with the following DeleteCustomers, then Execute: CREATE PROCEDURE DeleteCustomers ( @Original_CustomerID nchar(5) ) AS SET NOCOUNT OFF; DELETE FROM Customers WHERE (([CustomerID] = @Original_CustomerID))

To DROP or DELETE a Stored Procedure

DELETE or DROP a Stored Procedure with SQL Server Either right-click on the stored procedure and select Delete, or run a DROP script: DROP PROCEDURE ProcedureName

SQL Server Stored Procedure Links of Interests MSSQLTips: http://www.mssqltips.com/sqlservertip/1495/getting-started-with-sql-server-stored-procedures/ Code Project: http://www.codeproject.com/Articles/38682/Overview-of-SQL-Server-Stored-Procedure MSSQLtips: http://www.mssqltips.com/sqlservertutorial/161/creating-a-simple-stored-procedure/ MSSQLTips: http://www.mssqltips.com/sqlservertutorial/162/how-to-create-a-sql-server-stored-procedure-with-parameters/ MSSQLTips: http://www.mssqltips.com/sqlservertutorial/163/returning-stored-procedure-parameter-values-to-a-calling-stored-procedure/ MSSQLTips: http://www.mssqltips.com/sqlservertutorial/164/using-try-catch-in-sql-server-stored-procedures/ MSSQLTips: http://www.mssqltips.com/sqlservertutorial/167/using-comments-in-a-sql-server-stored-procedure/ MSSQLTips: http://www.mssqltips.com/sqlservertutorial/169/naming-conventions-for-sql-server-stored-procedures/ MSSQLTips: http://www.mssqltips.com/sqlservertutorial/172/reducing-amount-of-network-data-for-sql-server-stored-procedures/ MSSQLTips: http://www.mssqltips.com/sqlservertutorial/173/deleting-a-sql-server-stored-procedure/ MSSQLTips: http://www.mssqltips.com/sqlservertutorial/174/modifying-an-existing-sql-server-stored-procedure/

Stored Procedures & Triggers (MySQL) OPTIONAL FOR REFERENCE ONLY

Stored Procedures MySQL and Stored Procedures MySQL is known as the most popular open source RDBMS which is widely used by both community and enterprise. However during the first decade of its existence, it did not support stored procedures, triggers, events, etc. Since MySQL version 5.0 (release in 2009) , those features have been added to MySQL database engine to make it become flexible and powerful. What follows is a look at stored procedures and how they are created and called in MySQL (we will look at stored procedures in Microsoft SQL Server on another day, after we've had some time to first learn a few of its operating nuances). http://mysqlstoredprocedure.com/

Stored Procedures How to View MySQL Stored Procedure in PhpMyAdmin? In PhpMyAdmin, select the correct database on the left hand panel You can see all the database tables in the right hand panel Scroll down the right hand panel until the end, you will see Routines Click on Routines All the Stored Procedures will be displayed on screen

Stored Procedures Creating a MySQL Stored Procedure in PhpMyAdmin Developers may have some issues creating a stored procedure in phpMyAdmin, which seems has issues supporting (or rather, not supporting) stored procedures, but there is a simple fix. First off, let's look at some attempted stored procedure code: Pretty easy, right? But it causes this error: Okay, so what's the simple fix? The next section about creating stored procedures in MySQL should make everything clear.

Stored Procedures Changing the Delimiter Creating a Stored Procedure The delimiter is the character or string of characters that you’ll use to tell the MySQL client that you’ve finished typing in an SQL statement. For ages, the delimiter has always been a semicolon (;). That, however, causes problems, because, in a stored procedure, one can have many statements, and each must end with a semicolon. What one can do is to change the delimiter to something else, something other than a semicolon. In this brief overview I'll be using // (you can use anything you want, $$ for example) Creating a Stored Procedure

Stored Procedures Let’s examine the stored procedure in a greater detail: The first command is DELIMITER //, which is not related to the stored procedure syntax. The DELIMITER statement changes the standard delimiter which is semicolon ( ; ) to another. In this case, the delimiter is changed from the semicolon ( ; ) to double-slashes //. Why do we have to change the delimiter? because we want to pass the  stored procedure to the server as a whole instead of letting MySQL interpret each statement one at a time when we type.  Following the END keyword, we use delimiter // to indicate the end of the stored procedure. The last command DELIMITER ; changes the delimiter back to the semicolon ( ; ). The CREATE PROCEDURE statement is used to create a new stored procedure. You can specify the name of stored procedure after the CREATE PROCEDURE statement. In this case, the name of the stored procedure is GetAllProducts. Do not forget the parenthesis ( ) after the name of the store procedure or you will get an error message. Everything inside a pair of keyword BEGIN and END is called stored procedure’s body. You can put the declarative SQL code inside the stored procedure’s body to handle business logic. In the store procedure we used simple SQL SELECT statement to query data from the products table

Stored Procedures Calling a Stored Procedure Modify a Stored Procedure To call a procedure, you only need to enter the word CALL, followed by the name of the procedure, and then the parentheses, including all the parameters between them (variables or values). Parentheses are compulsory (required). Modify a Stored Procedure MySQL provides an ALTER PROCEDURE statement to modify a routine, but only allows for the ability to change certain characteristics. If you need to alter the body or the parameters, you must drop and recreate the procedure Drop (Delete) A Stored Procedure This is a simple command. The IF EXISTS clause prevents an error in case the procedure does not exist.

Parameters (in a Stored Procedure) Let’s examine how you can define parameters within a stored procedure. CREATE PROCEDURE proc1 ( ) : Parameter list is empty CREATE PROCEDURE proc1 (IN varname DATA-TYPE) : One input parameter. The word IN is optional because parameters are IN (input) by default. CREATE PROCEDURE proc1 (OUT varname DATA-TYPE) : One output parameter. CREATE PROCEDURE proc1 (INOUT varname DATA-TYPE) : One parameter which is both input and output. Of course, you can define multiple parameters defined with different types. IN Example OUT Example INOUT Example

Variables (Stored Procedures) The following step will teach you how to define variables, and store values inside a procedure. You must declare them explicitly at the start of the BEGIN/END block, along with their data types. Once you’ve declared a variable, you can use it anywhere that you could use a session variable, or literal, or column name. Declare a variable using the following syntax: Let's look at a few variables:

Variables (Stored Procedures) Working with Variables Once the variables have been declared, you can assign them values using the SET or SELECT command:

Flow Control Structures MySQL supports the IF, CASE, ITERATE, LEAVE LOOP, WHILE and REPEAT constructs for flow control within stored programs. We’re going to review how to use IF, CASE and WHILE specifically, since they happen to be the most commonly used statements in routines. IF Statement

Flow Control Structures CASE Statement The CASE statement is another way to check conditions and take the appropriate path. It’s an excellent way to replace multiple IF statements. The statement can be written in two different ways, providing great flexibility to handle multiple conditions

Flow Control Structures WHILE Statement There are technically three standard loops: WHILE loops, LOOP loops, and REPEAT loops. You also have the option of creating a loop using the “Darth Vader” of programming techniques: the GOTO statement. Check out this example of a loop in action:

Cursors (Stored Procedures) "Cursor" is used to iterate through a set of rows returned by a query and process each row. MySQL supports cursor in stored procedures. Here's a summary of the essential syntax to create and use a cursor. A ‘cursor’ in MySQL is essentially just the result set that’s returned from a query. Using a cursor allows you to iterate, or step through, the results of a query and perform certain operations on each row that’s returned. Think of them like holders for any data you might process in a loop

Parameter, Result Set, Return Value A Parameter is a variable passed to a stored procedure. Parameters can be used for either input or output. A Result Set is the set of data values returned by a SELECT statement A Return Value is an integer value returned by a stored procedure, often used to send an error message to the caller Variables You can store a value in a user-defined variable in one statement and then refer to it later in another statement. This enables you to pass values from one statement to another. User-defined variables are session-specific. That is, a user variable defined by one client cannot be seen or used by other clients. All variables for a given client session are automatically freed when that client exits. User variables are written as @var_name One way to set a user-defined variable is by issuing a SET statement: SET @var_name = expr [, @var_name = expr] ... For SET, either = or := can be used as the assignment operator.

Functions A Function is a SQL object used to evaluate an expression and return data Used to get information from the database. It can't change data. Used internally by other functions, stored procedures, or views Can use zero or more parameters Call the function by name with any parameter value(s) enclosed in parenthesis, separated by commas Built using a CREATE FUNCTION statement.

Triggers By definition, a trigger or database trigger is a stored program (much like a stored procedure) that is executed automatically to respond to a specific event associated with table e.g., insert, update or delete. In other words, a stored program has been triggered to fire off automatically in response to a specified event or series of events occurring within the database. A SQL trigger is also known as a special type of stored procedure because it is not called directly by users like a stored procedure. The main difference between a trigger and a stored procedure is that a trigger is called automatically when a data modification event is made against a table while a stored procedure must be called explicitly. It is important to understand SQL trigger’s advantages and disadvantages using SQL triggers. In the following sections, we will discuss about the advantages and disadvantages of using SQL triggers in more detail. Advantages of using SQL Triggers SQL trigger provides an alternative way to check the integrity of data. SQL trigger can catch errors in business logic in the database layer. SQL trigger provides an alternative way to run scheduled tasks. SQL trigger is very useful to audit the changes of data in a tables. Disadvantages of using SQL Triggers SQL trigger only can provide an extended validation and it cannot replace all the validations. Some simple validations has to be done in the application layer. SQL trigger is invoked and executed invisibly from client-applications therefore it is difficult to figure out what happen in the database layer. SQL trigger may increase the overhead of the database server.

Triggers MySQL Trigger Syntax In order to create a trigger you use CREATE TRIGGER statement. The following illustrates the syntax of the CREATE TRIGGER statement Let’s examine the syntax above in more detail. You put the trigger name after the CREATE TRIGGER statement. The trigger name should follow the naming convention [trigger time]_[table name]_[trigger event], for example before employees_update. Trigger activation time can be BEFORE or AFTER. You must specify the activation time when you define a trigger. You use BEFORE keyword if you want to process action prior to the change is made on the table and AFTER if you need to process action after change are made. Trigger event can be INSERT, UPDATE and DELETE. These events cause triggers to be invoked. A trigger only can be invoked by one event. To define a trigger that is invoked by multiple events, you have to define multiple triggers, one for each event. A trigger must be associated with a specific table. Without a table, trigger would not exist therefore you have to specify the table name after the ON keyword. The SQL code is placed between BEGIN and END keywords. The OLD and NEW keywords help you develop trigger more efficient. The OLD keyword refers to the existing record before you change the data and the NEW keyword refers to the new row after you change the data.

Triggers MySQL Trigger Example Let’s start creating a trigger in MySQL to audit the changes of the employees table. First, we have an employees table in our MySQL sample database as follows: Second, we create a new table named employees_audit to keep the change of the employee records. This script creates the employee_audit table Third, we create the BEFORE UPDATE trigger to be invoked before a change is made to the employee records.

Triggers MySQL Trigger Example If you take a look at the schema, you will see before_employee_update trigger under the employees table as follows: Now it’s time to update an employee record to test if the trigger is really invoked. To check if the trigger was invoked by the UPDATE statement, we can query the employees_audit table The following is the output of the query: As you see, our trigger was really invoked so that we have a new record in the employees_audit table

Stored Procedures in MySQL Workbench

Stored Procedures (MySQL Workbench) It’s kind of tedious to write the store procedure in MySQL especially when the stored procedure is complex. Most of the GUI tool for MySQL allows you to create new stored procedures using an intuitive interface. For example, in MySQL Workbench, you can create a new stored procedure as follows:

Stored Procedures (MySQL Workbench)

Stored Procedures (MySQL Workbench)

Stored Procedures (MySQL Workbench) Calling a stored procedure: