MySQL code execution structure example analysis [sequence, branch, loop structure]

MySQL code execution structure example analysis [sequence, branch, loop structure]

This article uses an example to describe the MySQL code execution structure. Share with you for your reference, the details are as follows:

In this article:

  • What is the code execution structure?
  • Sequence Structure
  • Branch structure
  • Loop Structure

Release date: 2018-04-18


What is the code execution structure:

  • The code execution structure mentioned here is the execution order of multiple SQL statements.
  • The code execution structure is mainly used to store multiple SQL statements in triggers, stored procedures, and functions.

Sequential structure:

  • The sequential structure is to execute SQL statements from top to bottom
  • Generally, the default structure is a sequence

Branch structure:

  • The execution of the branch structure is to select the execution path based on certain conditions. It will choose to execute those SQL statements based on the conditions we give.
  • The branch structure in MySQL is only if-else:
    • grammar:
      if condition then
       SQL statement [elseif condition then
       sql statement]
      [else
       sql statement]
      end if;
    • Example:
      -- 
      create table pass(id int primary key auto_increment,name varchar(15),score int );
      create table unpass(id int primary key auto_increment,name varchar(15),score int);
      
      -- Use stored procedures to create procedure myif(in name varchar(15),in score int)
      begin
       if score >=60 then
        insert into pass(name,score) values(name,score);
       else
        insert into unpass(name,score) values(name,score);
       end if;
      end;
      -- Call and view the result call myif("lilei",61);
      call myif("hanmeimei",95);
      select * from pass;
      select * from unpass;
      call myif("tuhao",59);
      select * from unpass;
    • The conditions in if can basically refer to the conditions of the while clause of the select statement. Anything like in\not in \= \!= etc. can be used.
      create procedure myif3(in a char(1))
      begin
       if a in('a','b') then
        select 1;
       else 
        select 2;
       end if;
      end;
      call myif3('a');
      call myif3('b');
      call myif3('c');

Replenish:

  • Theoretically, if the judgment is not correct and you do not want to continue executing, you should execute a return (such as the return in C language to interrupt the function execution), but there is no corresponding interrupt mechanism in MySQL, so we need to actively interrupt (there are many ways to interrupt, such as executing a statement that conforms to the syntax but cannot be executed) [This scenario, for example, is to determine whether a student exists. If not, no operation will be performed, so a statement that cannot be successfully executed should be executed to report an error and return . 】
  • In fact, there is another branching structure: case when [It seems that many books don’t talk about it much, so I won’t talk about it here. If you are interested, you can search on Baidu. 】

Loop structure:

    • A loop structure refers to a program structure that is set up to repeatedly execute a certain function in a program. The loop structure in MySQL is used to loop and run the same SQL statement multiple times.
    • The loop structures in MySQL include loop structure, while structure, and repeat structure. Here we only describe the while structure. If you are interested in learning about the others, you can search on Baidu.
    • grammar:
while condition do
 sql statement end while;
        Those who have learned other languages ​​may know that there are continue (ending the loop early) and break (jumping out of the entire loop) in the loop structure.
        In the loop structure of MySQL, leave is used instead of break, and iterate is used instead of continue, but their usage syntax is: leave\iterate loop name, so how to define the loop name?
Loop name: while condition do
 sql statement;
 leave_iterate loop name;
end while;
  • Example:
    -- A meaningless example, just for demonstration create table whilenum(id int);
    -- create procedure mywhile() with built-in conditions
    begin
     declare num int;
     set num=10;
     c1:while num>0 do
       insert into whilenum values(num);
       set num=num-1;
      end while;
    end;
    -- Create procedure mywhile2(in num int) with the passed parameter as the condition
    begin
     c1:while num>0 do
       insert into whilenum values(num);
       set num=num-1;
      end while;
    end;
    -- create procedure mywhile3(in num int) with interrupt
    begin
     c1:while num>0 do
       if num%2=0 then
        set num=num-1;
        iterate c1;
       end if;
       insert into whilenum values(num);
       set num=num-1;
      end while;
    end;

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

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

You may also be interested in:
  • MySQL statement execution order and writing order example analysis
  • Simply understand the writing and execution order of MySQL statements
  • A brief understanding of MySQL SELECT execution order
  • A small question about the execution order of SQL in MySQL
  • In-depth explanation of SQL statement execution (MySQL architecture overview -> query execution process -> SQL parsing order)
  • Analysis of statement execution order of sql and MySQL
  • A brief discussion on the mysql execution process and sequence

<<:  How to start a Java program in docker

>>:  Build Tomcat9 cluster through Nginx and realize session sharing

Recommend

Can MySQL's repeatable read level solve phantom reads?

introduction When I was learning more about datab...

Example code for converting html table data to Json format

The javascript function for converting <table&g...

【HTML element】Detailed explanation of tag text

1. Use basic text elements to mark up content Fir...

6 solutions to IDEA's inability to connect to the MySQL database

This article mainly introduces 6 solutions to the...

The implementation of event binding this in React points to three methods

1. Arrow Function 1. Take advantage of the fact t...

MySQL permission control detailed explanation

Table of contents mysql permission control Permis...

Image hover toggle button implemented with CSS3

Result:Implementation Code html <ul class=&quo...

How to install and configure WSL on Windows

What is WSL Quoting a passage from Baidu Encyclop...

Elements of user experience or elements of web design

System and user environment design <br />Th...

Detailed explanation of publicPath usage in Webpack

Table of contents output output.path output.publi...