Reader small image

You're reading from  Learn SQL using MySQL in One Day and Learn It Well

Product typeBook
Published inApr 2024
PublisherPackt
ISBN-139781836205678
Edition1st Edition
Right arrow
Author (1)
Jamie Chan
Jamie Chan
author image
Jamie Chan

Jamie Chan is a tutor and freelance programmer with years of experience and a dedicated passion for sharing the joy of programming with as many people as possible. With seven bestselling programming books on Amazon, Jamie's publications stand out for their ability to break down complex concepts into simple terms. Additionally, each book includes complete projects at the end, enabling hands-on learning and a deep understanding of the concepts presented.
Read more about Jamie Chan

Right arrow

Stored Procedures

 

In this exercise, we will create a total of nine stored procedures. Before we start coding them, let’s first change the delimiter by adding the line

 

DELIMITER $$

 

to our sportsDB.sql file.

 

We’ll code all the stored procedures after this line; there is no need to change the delimiter back to a semi-colon after each procedure. We’ll change the delimiter back after we finish coding all the procedures and functions.

 

Ready?

 

insert_new_member

 

The first stored procedure is for inserting a new member into the members table.

 

If you study the structure of the members table, you can see that it has a total of 5 columns: id, password, email, member_since and payment_due.

 

As the last two columns have default values, we only need to provide values for the first three columns when inserting a new member.

 

To do that, let’s create a stored procedure called insert_new_member...

lock icon
The rest of the page is locked
Previous PageNext Page
You have been reading a chapter from
Learn SQL using MySQL in One Day and Learn It Well
Published in: Apr 2024Publisher: PacktISBN-13: 9781836205678

Author (1)

author image
Jamie Chan

Jamie Chan is a tutor and freelance programmer with years of experience and a dedicated passion for sharing the joy of programming with as many people as possible. With seven bestselling programming books on Amazon, Jamie's publications stand out for their ability to break down complex concepts into simple terms. Additionally, each book includes complete projects at the end, enabling hands-on learning and a deep understanding of the concepts presented.
Read more about Jamie Chan