Introduction to query commands for MySQL stored procedures

Introduction to query commands for MySQL stored procedures

As shown below:

select name from mysql.proc where db='database name';

or

select routine_name from information_schema.routines where routine_schema='database name';

or

show procedure status where db='database name';
SHOW CREATE PROCEDURE database.Stored procedure name;

Supplement: MySQL stored procedure - loop through the query result set

1. Create a stored procedure

When creating a stored procedure according to MySQL syntax, it is important to note that if you loop through the result set of the query, you need to take out the data in the result set for operation.

CREATE DEFINER=`root`@`%` PROCEDURE `alter_view_counts`()
BEGIN
 #Declare end flag DECLARE end_flag int DEFAULT 0; 
 DECLARE albumId bigint; 
 #Declare cursor album_curosr
 DECLARE album_curosr CURSOR FOR SELECT album_id FROM album; 
 #Set the termination flag DECLARE CONTINUE HANDLER FOR NOT FOUND SET end_flag=1; 
 #Open the cursor OPEN album_curosr; 
 #Traverse the cursor REPEAT
 #Get the current cursor pointer record and assign the value to the custom variable FETCH album_curosr INTO albumId;
  #Use the obtained value to perform database operations UPDATE album SET album.views_count= (SELECT SUM(light_chat.views_count) FROM `light_chat` WHERE light_chat.album_id = albumId) WHERE album.album_id = albumId;
 # Determine whether to end UNTIL end_flag END REPEAT according to end_flag; 
 #Close the cursorclose album_curosr; 
END

2. Calling a stored procedure

CALL alter_view_counts()

The above is my personal experience. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM. If there are any mistakes or incomplete considerations, please feel free to correct me.

You may also be interested in:
  • Solution to the problem that MySQL commands cannot be entered in Chinese
  • Detailed explanation of encoding issues during MySQL command line operations
  • Introduction to the use of MySQL source command
  • MySQL commonly used SQL and commands from entry to deleting database and running away
  • Implementation of mysql using mysqlbinlog command to restore accidentally deleted data
  • Three methods of automatically completing commands in MySQL database
  • MySQL password contains special characters & operation of logging in from command line
  • Mysql desktop tool SQLyog resources and activation methods say goodbye to the black and white command line
  • MySQL login and exit command format
  • How to use the MySQL authorization command grant
  • Summary of MySQL basic common commands

<<:  Introduction to CSS foreground and background automatic color matching technology (demo)

>>:  About the VMware vcenter unauthorized arbitrary file upload vulnerability (CVE-2021-21972)

Recommend

How to set PATH environment variable in Linux system (3 methods)

1. In Windows system, many software installations...

CocosCreator ScrollView optimization series: frame loading

Table of contents 1. Introduction 2. Analysis of ...

Hover zoom effect made with CSS3

Result:Implementation code: html <link href=&#...

VMware vsphere 6.5 installation tutorial (picture and text)

vmware vsphere 6.5 is the classic version of vsph...

Datagrip2020 fails to download MySQL driver

If you cannot download it by clicking downloadlao...

How to use Nginx to solve front-end cross-domain problems

Preface When developing static pages, such as Vue...

About the problems of congruence and inequality, equality and inequality in JS

Table of contents Congruent and Incongruent congr...

Docker dynamically exposes ports to containers

View the IP address of the Container docker inspe...

Building FastDFS file system in Docker (multi-image tutorial)

Table of contents About FastDFS 1. Search for ima...

MySQL Optimization: InnoDB Optimization

Study plans are easily interrupted and difficult ...

Basic Implementation of AOP Programming in JavaScript

Introduction to AOP The main function of AOP (Asp...

18 sets of exquisite Apple-style free icon materials to share

Apple Mug Icons and Extras HD StorageBox – add on...

Steps to transplant the new kernel to the Linux system

1. Download the ubuntu16.04 image and the corresp...

A brief analysis of the difference between ref and toRef in Vue3

1. ref is copied, the view will be updated If you...