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
Explain the ACID properties (Atomicity, Consistency, Isolation, Durability).Explain the ACID properties (Atomicity, Consistency, Isolation, Durability).Apr 16, 2025 am 12:20 AM

ACID attributes include atomicity, consistency, isolation and durability, and are the cornerstone of database design. 1. Atomicity ensures that the transaction is either completely successful or completely failed. 2. Consistency ensures that the database remains consistent before and after a transaction. 3. Isolation ensures that transactions do not interfere with each other. 4. Persistence ensures that data is permanently saved after transaction submission.

MySQL: Database Management System vs. Programming LanguageMySQL: Database Management System vs. Programming LanguageApr 16, 2025 am 12:19 AM

MySQL is not only a database management system (DBMS) but also closely related to programming languages. 1) As a DBMS, MySQL is used to store, organize and retrieve data, and optimizing indexes can improve query performance. 2) Combining SQL with programming languages, embedded in Python, using ORM tools such as SQLAlchemy can simplify operations. 3) Performance optimization includes indexing, querying, caching, library and table division and transaction management.

MySQL: Managing Data with SQL CommandsMySQL: Managing Data with SQL CommandsApr 16, 2025 am 12:19 AM

MySQL uses SQL commands to manage data. 1. Basic commands include SELECT, INSERT, UPDATE and DELETE. 2. Advanced usage involves JOIN, subquery and aggregate functions. 3. Common errors include syntax, logic and performance issues. 4. Optimization tips include using indexes, avoiding SELECT* and using LIMIT.

MySQL's Purpose: Storing and Managing Data EffectivelyMySQL's Purpose: Storing and Managing Data EffectivelyApr 16, 2025 am 12:16 AM

MySQL is an efficient relational database management system suitable for storing and managing data. Its advantages include high-performance queries, flexible transaction processing and rich data types. In practical applications, MySQL is often used in e-commerce platforms, social networks and content management systems, but attention should be paid to performance optimization, data security and scalability.

SQL and MySQL: Understanding the RelationshipSQL and MySQL: Understanding the RelationshipApr 16, 2025 am 12:14 AM

The relationship between SQL and MySQL is the relationship between standard languages ​​and specific implementations. 1.SQL is a standard language used to manage and operate relational databases, allowing data addition, deletion, modification and query. 2.MySQL is a specific database management system that uses SQL as its operating language and provides efficient data storage and management.

Explain the role of InnoDB redo logs and undo logs.Explain the role of InnoDB redo logs and undo logs.Apr 15, 2025 am 12:16 AM

InnoDB uses redologs and undologs to ensure data consistency and reliability. 1.redologs record data page modification to ensure crash recovery and transaction persistence. 2.undologs records the original data value and supports transaction rollback and MVCC.

What are the key metrics to look for in an EXPLAIN output (type, key, rows, Extra)?What are the key metrics to look for in an EXPLAIN output (type, key, rows, Extra)?Apr 15, 2025 am 12:15 AM

Key metrics for EXPLAIN commands include type, key, rows, and Extra. 1) The type reflects the access type of the query. The higher the value, the higher the efficiency, such as const is better than ALL. 2) The key displays the index used, and NULL indicates no index. 3) rows estimates the number of scanned rows, affecting query performance. 4) Extra provides additional information, such as Usingfilesort prompts that it needs to be optimized.

What is the Using temporary status in EXPLAIN and how to avoid it?What is the Using temporary status in EXPLAIN and how to avoid it?Apr 15, 2025 am 12:14 AM

Usingtemporary indicates that the need to create temporary tables in MySQL queries, which are commonly found in ORDERBY using DISTINCT, GROUPBY, or non-indexed columns. You can avoid the occurrence of indexes and rewrite queries and improve query performance. Specifically, when Usingtemporary appears in EXPLAIN output, it means that MySQL needs to create temporary tables to handle queries. This usually occurs when: 1) deduplication or grouping when using DISTINCT or GROUPBY; 2) sort when ORDERBY contains non-index columns; 3) use complex subquery or join operations. Optimization methods include: 1) ORDERBY and GROUPB

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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Chat Commands and How to Use Them
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

EditPlus Chinese cracked version

EditPlus Chinese cracked version

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

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor