December 2005
Intermediate to advanced
336 pages
4h 52m
English
In this chapter, you’ll learn what triggers are, why they are used, and how. You’ll also look at the syntax for creating and using them.
Requires MySQL 5. Support for triggers was added to MySQL 5. As such, this chapter is applicable to MySQL 5 or later only.
MySQL statements are executed when needed, as are stored procedures. But what if you wanted a statement (or statements) to be executed automatically when events occur? For example:
Every time a customer is added to a database table, check that the phone number is formatted correctly and that the state abbreviation is in uppercase.
Every time a product is ordered, subtract the ordered quantity from the number in stock.
Whenever a row is deleted, ...
Read now
Unlock full access