Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Learn SQL using MySQL in One Day and Learn It Well

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

Product type Book
Published in Apr 2024
Publisher Packt
ISBN-13 9781836205678
Pages 121 pages
Edition 1st Edition
Languages
Author (1):
Jamie Chan Jamie Chan
Profile icon Jamie Chan

Trigger

 

Now that we have finished coding our stored procedures, let’s move on to triggers. We’ll only be coding one trigger - payment_check.

 

This trigger checks the outstanding balance of a member, which is recorded in the payment_due column of the members table.

 

If payment_due is more than $0 and the member terminates his/her account, we’ll transfer the data to the pending_terminations table. This table records all the termination requests that are pending due to an outstanding payment.

 

Let’s first declare the trigger as follows:

 

CREATE TRIGGER payment_check BEFORE DELETE ON members FOR EACH ROW

 

As you can see, this trigger is activated when we try to delete a record from the members table.

 

Next, between the BEGIN and END $$ markers, we need to do a few things:

 

First, we need to declare a local variable called v_payment_due. The data type of v_payment_due matches that of the payment_due...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €14.99/month. Cancel anytime}