search
HomeDatabaseMysql TutorialMethods for creating stored functions and setting triggers in MySQL

Stored functions are also one of the procedural objects, similar to stored procedures. These code snippets contain SQL and procedural statements that can be called from applications and SQL. However, they also have some differences:

1. The storage function has no output parameters, because the storage function itself is the output parameter.

2. The CALL statement cannot be used to call stored functions.

3. The stored function must contain a RETURN statement, and this special SQL statement is not allowed to be included in the stored procedure

1. Create a stored function

Use CREATE FUNCTION Statement to create a stored function

Syntax format:

CREATE FUNCTION Storage function name ([parameters[,...]])
RETURNS type
Function body

Note: Stored functions cannot have the same name as stored procedures. The stored function body must contain a RETURN value statement, and the value is the return value of the stored function.

Example: Create a stored function that returns the number of books in the Book table as the result

DELIMITER $$
CREATE FUNCTION num_book()
RETURNS INTEGER
BEGIN
RETURN(SELECT COUNT(*)FROM Book);
END$$
DELIMITER ;

When the RETURN clause contains a SELECT statement, the return result of the SELECT statement can only be one row and can only be There is a column of values. Even if the stored function does not require parameters, you need to use () when calling it, for example: num_book().

Example: Create a stored function to delete records that exist in the Sell table but not in the Book table

DELIMITER $$
CREATE FUNCTION del_sell(book_bh CHAR(20))
RETURNS BOOLEAN
BEGIN
DECLARE bh CHAR(20);
SELECT 图书编号 INTO bh FROM Book WHERE 图书编号=book_bh;
IF bh IS NULL THEN
DELETE FROM Sell WHERE 图书编号=book_bh;
RETURN TRUE;
ELSE
RETURN FALSE;
END IF;
END$$
DELIMITER ;

The stored function gives the book number as the input parameter, first press the given book The number is searched in the Book table to see if there is a book with the book number. If there is no book, return false. If there is, return true. At the same time, the book with this book number must be deleted from the Sell table. To list the stored procedures in the database, use the SHOW FUNCTION STATUS command.

2. Call the stored function

After the stored function is created, the method of calling the stored function is the same as using the built-in function provided by the system, using the SELECT keyword.

Syntax format:

SELECT storage function name ([parameters[,...]])

Example: Create a storage function publish_book, Obtain the author of the book by calling the storage function author_book, and determine whether the author's surname is "Zhang". If so, the publication time will be returned; if not, "unsatisfactory" will be returned.

DELIMITER $$
CREATE FUNCTION publish_book(b_name CHAR(20))
RETURNS CHAR(20)
BEGIN
DECLARE name CHAR(20);
SELECT author_book(b_name)INTO name;
IF name like'张%' THEN
RETURN(SELECT 出版时间 FROM Book WHERE 书名=b_name);
ELSE
RETURN'不合要求';
END IF;
END$$
DELIMITER ;

Call the stored function publish_book to view the results:

SELECT publish_book('Computer Network Technology');

Methods to delete stored functions and delete storage The method of the process is basically the same, using the DROP FUNCTION statement

Syntax format:

DROP FUNCTION [IF EXISTS] stores the function name

Note: IF EXISTS The clause is an extension of MySQL. If the function does not exist, it prevents errors from occurring.

Example: Delete stored function a

DROP FUNCTION IF EXISTS a;

3. Create a trigger

Use the CREATE TRIGGER statement Create a trigger

Syntax format:

CREATE TRIGGER trigger name trigger time trigger event
ON table name FOR EACH ROW trigger action

Triggers have two triggering options: BEFORE and AFTER, which respectively indicate that the trigger is triggered before or after the statement that activates it. Typically the AFTER option is used to execute the statement after activating the trigger. The BEFORE option is used to verify that the new data complies with usage restrictions.

Triggers containing SELECT statements will return results to the client. To avoid this situation, you should avoid using SELECT statements in trigger definitions. Likewise, stored procedures that return data to the client cannot be called.

Example: Create a table table1 with only one column a, create a trigger on the table, and set the value of the user variable str to TRIGGER IS WORKING during each insertion operation.

CREATE TABLE table1(a INTEGER);
CREATE TRIGGER table1_insert AFTER INSERT
ON table1 FOR EACH ROW
SET@str='TRIGGER IS WORKING';

To see which triggers are in the database, use the SHOW TRIGGERS command.

SQL statements in MySQL triggers can be associated with any column in the table. But you cannot directly use the name of the column to mark it, which will confuse the system, because the statement that activates the trigger may have modified, deleted, or added a new column name, while the old name of the column exists at the same time. Must be identified using this syntax: NEW.column_name or OLD.column_name. NEW.column_name is used to refer to a column of a new row, and OLD.column_name is used to refer to a column of an existing row before updating or deleting it.

For INSERT statements, only NEW is legal, and for DELETE statements, only OLD is legal. The UPDATE statement can be used simultaneously with NEW and OLD.

Create a trigger so that when the information about a book in the table "Book" is deleted, all data in the "Sell" table related to the book will also be deleted.

DELIMITER $$
CREATE TRIGGER book_del AFTER DELETE
ON Book FOR EACH ROW
BEGIN
DELETE FROM Sell WHERE 图书编号=OLD.图书编号;
END$$
DELIMITER ;

When the trigger wants to trigger the update operation of the table itself, only the BEFORE trigger can be used, and the AFTER trigger will not be allowed.

4. Call the stored procedure in the trigger

Example: Assume that there is a table member_b in the Bookstore database with the same structure as the Members table. Create a trigger and add data to the Members table. When , call the stored procedure to synchronize the data in the member_b table with the Members table.

1. Define the stored procedure: create a table member_b with the same structure as the Members table

DELIMITER $$
CREATE PROCEDURE data_copy()
BEGIN
REPLACE member_b SELECT * FROM Members;
END$$

2. Create a trigger: call the stored procedure data_copy()

DELIMITER $$
CREATE TRIGGER members_ins AFTER INSERT
ON Members FOR EACH ROW
CALL data_copy();
DELIMITER ;

5 , Delete trigger

Syntax format:

DROP TRIGGER Trigger name

Example: Delete trigger members_ins

DROP TRIGGER members_ins;

The above is the detailed content of Methods for creating stored functions and setting triggers in MySQL. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:亿速云. If there is any infringement, please contact admin@php.cn delete
How to Grant Permissions to New MySQL UsersHow to Grant Permissions to New MySQL UsersMay 09, 2025 am 12:16 AM

TograntpermissionstonewMySQLusers,followthesesteps:1)AccessMySQLasauserwithsufficientprivileges,2)CreateanewuserwiththeCREATEUSERcommand,3)UsetheGRANTcommandtospecifypermissionslikeSELECT,INSERT,UPDATE,orALLPRIVILEGESonspecificdatabasesortables,and4)

How to Add Users in MySQL: A Step-by-Step GuideHow to Add Users in MySQL: A Step-by-Step GuideMay 09, 2025 am 12:14 AM

ToaddusersinMySQLeffectivelyandsecurely,followthesesteps:1)UsetheCREATEUSERstatementtoaddanewuser,specifyingthehostandastrongpassword.2)GrantnecessaryprivilegesusingtheGRANTstatement,adheringtotheprincipleofleastprivilege.3)Implementsecuritymeasuresl

MySQL: Adding a new user with complex permissionsMySQL: Adding a new user with complex permissionsMay 09, 2025 am 12:09 AM

ToaddanewuserwithcomplexpermissionsinMySQL,followthesesteps:1)CreatetheuserwithCREATEUSER'newuser'@'localhost'IDENTIFIEDBY'password';.2)Grantreadaccesstoalltablesin'mydatabase'withGRANTSELECTONmydatabase.TO'newuser'@'localhost';.3)Grantwriteaccessto'

MySQL: String Data Types and CollationsMySQL: String Data Types and CollationsMay 09, 2025 am 12:08 AM

The string data types in MySQL include CHAR, VARCHAR, BINARY, VARBINARY, BLOB, and TEXT. The collations determine the comparison and sorting of strings. 1.CHAR is suitable for fixed-length strings, VARCHAR is suitable for variable-length strings. 2.BINARY and VARBINARY are used for binary data, and BLOB and TEXT are used for large object data. 3. Sorting rules such as utf8mb4_unicode_ci ignores upper and lower case and is suitable for user names; utf8mb4_bin is case sensitive and is suitable for fields that require precise comparison.

MySQL: What length should I use for VARCHARs?MySQL: What length should I use for VARCHARs?May 09, 2025 am 12:06 AM

The best MySQLVARCHAR column length selection should be based on data analysis, consider future growth, evaluate performance impacts, and character set requirements. 1) Analyze the data to determine typical lengths; 2) Reserve future expansion space; 3) Pay attention to the impact of large lengths on performance; 4) Consider the impact of character sets on storage. Through these steps, the efficiency and scalability of the database can be optimized.

MySQL BLOB : are there any limits?MySQL BLOB : are there any limits?May 08, 2025 am 12:22 AM

MySQLBLOBshavelimits:TINYBLOB(255bytes),BLOB(65,535bytes),MEDIUMBLOB(16,777,215bytes),andLONGBLOB(4,294,967,295bytes).TouseBLOBseffectively:1)ConsiderperformanceimpactsandstorelargeBLOBsexternally;2)Managebackupsandreplicationcarefully;3)Usepathsinst

MySQL : What are the best tools to automate users creation?MySQL : What are the best tools to automate users creation?May 08, 2025 am 12:22 AM

The best tools and technologies for automating the creation of users in MySQL include: 1. MySQLWorkbench, suitable for small to medium-sized environments, easy to use but high resource consumption; 2. Ansible, suitable for multi-server environments, simple but steep learning curve; 3. Custom Python scripts, flexible but need to ensure script security; 4. Puppet and Chef, suitable for large-scale environments, complex but scalable. Scale, learning curve and integration needs should be considered when choosing.

MySQL: Can I search inside a blob?MySQL: Can I search inside a blob?May 08, 2025 am 12:20 AM

Yes,youcansearchinsideaBLOBinMySQLusingspecifictechniques.1)ConverttheBLOBtoaUTF-8stringwithCONVERTfunctionandsearchusingLIKE.2)ForcompressedBLOBs,useUNCOMPRESSbeforeconversion.3)Considerperformanceimpactsanddataencoding.4)Forcomplexdata,externalproc

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools