SQL statements need to be compiled first and then executed, and stored procedures (Stored Procedure) are a set of SQL statements to complete specific functions. They are compiled and stored in the database. The user specifies Call the stored procedure with the name and given parameters (if the stored procedure has parameters). Stored procedures are programmable functions that are created and saved in the database and can be composed of SQL statements and control structures. Stored procedures are useful when you want to perform the same function on different applications or platforms, or when you want to encapsulate specific functionality. Stored procedures in a database can be seen as a simulation of the object-oriented approach in programming, which allows control of how data is accessed.
Recommended courses: MySql Tutorial.
Advantages of stored procedures:
(1). Enhance the functionality and flexibility of SQL language: stored procedures can be written with control statements, It has strong flexibility and can complete complex judgments and more complex operations.
(2). Standard component programming: After a stored procedure is created, it can be called multiple times in the program without having to rewrite the SQL statement of the stored procedure. And database professionals can modify stored procedures at any time without affecting the application source code.
(3). Faster execution speed: If an operation contains a large amount of Transaction-SQL code or is executed multiple times, the stored procedure will be executed much faster than batch processing. Because stored procedures are precompiled. When a stored procedure is run for the first time, the query is analyzed and optimized by the optimizer and an execution plan is finally stored in the system table. The batch Transaction-SQL statement must be compiled and optimized every time it is run, and the speed is relatively slower.
(4). Reduce network traffic: For operations on the same database object (such as query, modification), if the Transaction-SQL statements involved in this operation are organized into stored procedures, then when the operations are performed on the client computer When the stored procedure is called, only the call statement is transmitted over the network, thereby greatly reducing network traffic and reducing network load.
(5). Make full use of it as a security mechanism: By restricting the permissions to execute a certain stored procedure, it is possible to limit the access permissions of the corresponding data and avoid unauthorized users from accessing the data. access, ensuring data security.
MySQL's stored procedures
Stored procedures are an important function of the database. MySQL 5.0 did not support stored procedures before, which greatly reduced the application of MySQL. Fortunately, MySQL 5.0 begins to support stored procedures, which can greatly improve the processing speed of the database and also improve the flexibility of database programming.
Creation of MySQL stored procedures
Syntax
CREATE PROCEDURE 过程名([[IN|OUT|INOUT] 参数名 数据类型[,[IN|OUT|INOUT] 参数名 数据类型…]]) [特性 ...] 过程体 DELIMITER // CREATE PROCEDURE myproc(OUT s int) BEGIN SELECT COUNT(*) INTO s FROM students; END // DELIMITER ;
Delimiter
MySQL uses ";" as the delimiter by default. If no delimiter is declared, the compiler will treat the stored procedure as a SQL statement, so the compilation process will report an error, so you must use "DELIMITER //" to declare the current segment delimiter in advance. , allowing the compiler to regard the content between the two "//" as the code of the stored procedure, and will not execute these codes; "DELIMITER;" means to restore the delimiter.
Parameters
The stored procedure may have input, output, input and output parameters as needed. If there are multiple parameters, use "," to separate them. The parameters of MySQL stored procedures are used in the definition of stored procedures. There are three parameter types, IN, OUT, INOUT:
. The value of the IN parameter must be specified when calling the stored procedure. Modify the parameter in the stored procedure. The value cannot be returned and is the default value. OUT: The value can be changed inside the stored procedure and can be returned. INOUT: It is specified when calling and can be changed and returned.
Procedure body
The beginning and end of the process body are marked with BEGIN and END.
Summary
This time we mainly mastered the use of stored procedures. In general, stored procedures are actually similar to functions in C. In C, we need to call this function in the file that creates this process, but for stored procedures, it is equivalent to storing this operation process in the database. You can use call and call it, and Input or output some parameters and results.
The most impressive thing is the definition of input and output like "in n int" and "out sum int". By looking at related blogs, we can summarize the usage rules of input and output definitions as follows:
The parameters of MySQL stored procedures are used in the definition of stored procedures. There are three parameter types
IN, OUT, INOUT
The format is: Create procedure|function([[IN |OUT | INOUT ] Parameter name data type...])
IN Input parameter
Indicates that the value of this parameter must be specified when calling the stored procedure. If the value of this parameter is modified during the stored procedure, it cannot be returned and is the default value
OUT Output parameters
This value can be changed inside the stored procedure and can be returned
INOUT Input and output parameters
This value can be specified when calling and can be returned Being changed and returned
IN and OUT have been experienced in the experiment, mainly the understanding of INOUT. Here is an example:
Usage example of parameter inout (can both input a value and Can pass out a value)
Statement function: pass an age, automatically increase the age by 10 years
create procedure p3(inout age int)
begin
set age:=age 10;
end
Among them: When calling, the inout parameter value is both an input type and an output type. Give it a value. The value is not a variable, so we need to set a variable first and initialize the value. Pass this directly when calling. Just variables.
set @currentAge=8$
call p3(@currentAge)$
select @currentAge$
After creating and executing the stored procedure, the running results are as follows:
The above is the detailed content of How to write database stored procedure. For more information, please follow other related articles on the PHP Chinese website!

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了关于索引优化器工作原理的相关内容,其中包括了MySQL Server的组成,MySQL优化器选择索引额原理以及SQL成本分析,最后通过 select 查询总结整个查询过程,下面一起来看一下,希望对大家有帮助。

sybase是基于客户/服务器体系结构的数据库,是一个开放的、高性能的、可编程的数据库,可使用事件驱动的触发器、多线索化等来提高性能。

visual foxpro数据库文件是管理数据库对象的系统文件。在VFP中,用户数据是存放在“.DBF”表文件中;VFP的数据库文件(“.DBC”)中不存放用户数据,它只起将属于某一数据库的 数据库表与视图、连接、存储过程等关联起来的作用。

数据库系统由4个部分构成:1、数据库,是指长期存储在计算机内的,有组织,可共享的数据的集合;2、硬件,是指构成计算机系统的各种物理设备,包括存储所需的外部设备;3、软件,包括操作系统、数据库管理系统及应用程序;4、人员,包括系统分析员和数据库设计人员、应用程序员(负责编写使用数据库的应用程序)、最终用户(利用接口或查询语言访问数据库)、数据库管理员(负责数据库的总体信息控制)。

microsoft sql server是Microsoft公司推出的关系型数据库管理系统,是一个全面的数据库平台,使用集成的商业智能(BI)工具提供了企业级的数据管理,具有使用方便可伸缩性好与相关软件集成程度高等优点。SQL Server数据库引擎为关系型数据和结构化数据提供了更安全可靠的存储功能,使用户可以构建和管理用于业务的高可用和高性能的数据应用程序。

数据库的“完整性”是指数据的正确性和相容性。完整性是指数据库中数据在逻辑上的一致性、正确性、有效性和相容性。完整性对于数据库系统的重要性:1、数据库完整性约束能够防止合法用户使用数据库时向数据库中添加不合语义的数据;2、合理的数据库完整性设计,能够同时兼顾数据库的完整性和系统的效能;3、完善的数据库完整性有助于尽早发现应用软件的错误。

结构层次是“数据库→数据表→记录→字段”;字段构成记录,记录构成数据表,数据表构成了数据库。数据库是一个完整的数据的记录的整体,一个数据库包含0到N个表,一个表包含0到N个字段,记录是表中的行。

mysql查询为什么会慢,关于这个问题,在实际开发经常会遇到,而面试中,也是个高频题。遇到这种问题,我们一般也会想到是因为索引。那除开索引之外,还有哪些因素会导致数据库查询变慢呢?


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

SublimeText3 Mac version
God-level code editing software (SublimeText3)

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.

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment
