Example analysis of mysql stored procedure usage

Example analysis of mysql stored procedure usage

This article describes the usage of MySQL stored procedures. Share with you for your reference, the details are as follows:

Overview:

Simply put, it is a set of SQL statements that are powerful and can implement some relatively complex logical functions, similar to the methods in the JAVA language;

A stored procedure is similar to a trigger in that both are a set of SQL statements, but a stored procedure is called actively and is more powerful than a trigger, which is called automatically when something happens.

Example

DELIMITER //
CREATE PROCEDURE proc (IN num INT)
BEGIN
SELECT * FROM v9_qd_account limit num;
END //
DELIMITER ;

implement:

SET @p_in=5;
CALL proc(@p_in);

or

CALL proc(5);

cycle

DECLARE num int default 5;
SET num = 1;
SET num = num + 1;

DELIMITER //
CREATE PROCEDURE proc(IN sname VARCHAR(20), IN pwd VARCHAR(5), IN qd INT, IN start INT, IN end INT)
  begin
  DECLARE var INT;
  DECLARE myname VARCHAR(30);
  SET var=start;
  while var<end do
    SET myname = CONCAT(sname,LPAD(var,3,'0'));
    insert into v9_qd_account (storename,password,qudao,regdate) value(myname,md5(pwd),qd,UNIX_TIMESTAMP());
    SET var=var+1;
  end while;
  end //
DELIMITER ;

Call

CALL proc('test','123456',1,1,21);

Check

SHOW PROCEDURE STATUS LIKE 'C%' \G; View stored procedures starting with the letter C SHOW CREATE PROCEDURE proc \G; View the status and creation statement View in information_schema.Routines

delete

DROP PROCEDURE IF EXISTS proc;
DROP FUNCTION mytest;

Tips

If there is Chinese in the parameter, you can do this

CREATE PROCEDURE useInfo(IN u_name VARCHAR(50) character set gbk,OUT u_age INT) ......

Readers who are interested in more MySQL-related content can check out the following topics on this site: "MySQL stored procedure skills", "MySQL common function summary", "MySQL log operation skills", "MySQL transaction operation skills summary" and "MySQL database lock related skills summary"

I hope this article will be helpful to everyone's MySQL database design.

You may also be interested in:
  • Definition and assignment of variables in mysql stored procedures
  • Detailed explanation of mysql stored procedure
  • Introduction to the use of MySQL stored procedure cursor loop
  • MySQL stored procedure example (including transactions, output parameters, nested calls)
  • Detailed explanation of MySql stored procedures and functions
  • mysql query database stored procedures and functions statement
  • MySQL stored procedure example with input and output parameters
  • Example analysis of stored procedures in MySQL and how to call stored procedures
  • The difference between MySQL stored procedures and functions
  • How to execute dynamic SQL statements in MySQL stored procedures
  • Example of using cursor in mysql stored procedure
  • Mysql stored procedure nested loop using cursor sample code

<<:  How to deploy services in Windows Server 2016 (Graphic Tutorial)

>>:  Detailed explanation of nodejs built-in modules

Recommend

Vue form input binding v-model

Table of contents 1.v-model 2. Binding properties...

Quickly solve the problem of slow and stuck opening of input[type=file]

Why is it that when the input tag type is file an...

How to set the number of mysql connections (Too many connections)

During the use of mysql, it was found that the nu...

js tag syntax usage details

Table of contents 1. Introduction to label statem...

Analysis of two usages of the a tag in HTML post request

Two examples of the use of the a tag in HTML post...

How to install Nginx in CentOS

Official documentation: https://nginx.org/en/linu...

Solve the 1251 error when establishing a connection between mysql and navicat

I reinstalled the computer and installed the late...

Detailed explanation of the life cycle of Angular components (Part 2)

Table of contents 1. View hook 1. Things to note ...

Vue implements tab label (label exceeds automatic scrolling)

When the created tab label exceeds the visible ar...

Two ways to visualize ClickHouse data using Apache Superset

Apache Superset is a powerful BI tool that provid...

WeChat Mini Program QR Code Generation Tool weapp-qrcode Detailed Explanation

WeChat Mini Program - QR Code Generator Download:...