Detailed explanation of MySQL cumulative calculation implementation method

Detailed explanation of MySQL cumulative calculation implementation method

This article describes the MySQL cumulative calculation example. Share with you for your reference, the details are as follows:

Preface

We received a request and the product wanted to analyze the user growth curve. That is, a list of the total number of people per day for a certain period of time. It is better to conduct an evaluation of the effectiveness of recent activities. This statistical SQL still took me a while. MySQL statistics still require certain skills.

Demand Analysis

user_id reg_time
1 2019-09-03
2 2019-09-04
3 2019-09-04
4 2019-09-05
5 2019-09-05
6 2019-09-06

If we look at the user_info table above, we can easily count the number of new users added each day based on the time dimension. The sql is as follows:

select reg_time, count(user_id) daily_quantity
 from user_info
group by reg_time 

Through the above sql we can easily get the following list:

reg_time daily_quantity
2019-09-03 1
2019-09-04 2
2019-09-05 2
2019-09-06 1

But this is not the result we want. What we want is last day's total plus today's net increase, and so on. That is, we want:

reg_time daily_quantity
2019-09-03 1
2019-09-04 3
2019-09-05 5
2019-09-06 6

This is a bit tricky, we need to do some cumulative calculations. I tried self-linking, functions and other operations but still couldn't get a correct result. At this point, it seems like it would be perfect if Java code were used to handle this. We only need to declare the initial value, and then loop and accumulate to calculate the result:


 public static void main(String[] args) {
  int[] arr = {1, 2, 2, 1};

  int[] ints = dailyQuantityArr(0, arr);


  for (int i : ints) {
   System.out.println("i = " + i);
  }


 }


 public static int[] dailyQuantityArr(int base, int[] dailyIncrQuantity) {


  int[] result = new int[dailyIncrQuantity.length];
  // Accumulate filling for (int i = 0; i < dailyIncrQuantity.length; i++) {
   base += dailyIncrQuantity[i];

   result[i] = base;

  }
  return result;
 }

The above pseudo code can calculate the result. Of course, if possible, try to perform this complex calculation in Java business code. However, the product requirement is that we can provide a SQL statement that can directly get the answer he wants in the visual data engine. So I got inspiration from the above code.
Does mysql have such a variable? have! Of course. I remember a very common scenario. In the past, there were often businesses that required us to output serial numbers. Oracle comes with a pseudo column rownum, but MySQL does not. MySQL usually generates serial numbers by declaring auto-increment variables. Take the user_info table as an example:

select (@i:=@i+1) as rownum, user_id 
 from user_info ,(select @i:=0) as r

Mysql user variables

MySQL variables are divided into local variables, user variables, session variables, and global variables. In the above statement we use user variables. User variables are related to database connections. Variables declared in a connection disappear after they are created in a stored procedure until the database instance is disconnected. Variables declared in this connection cannot be used in another connection.
User variables in MySQL do not need to be declared in advance, and are declared in the format of @varname when used. Assignment operations are performed through := or = . If you need to output externally, you need to use select keyword, and the assignment must use := .

Using Mysql user variables for cumulative calculations

After learning about user variables, we know how to perform cumulative calculations. The daily cumulative total number of people in the user_info table should be like this:

 
 select a.reg_time,
    a.daily,
   @i:=@i+a.daily as daily_quantity 
  from (select reg_time ,  
  count(user_id) daily 
  from user group by reg_time ) a ,
  (select @i:=0) b

The query results are as follows, which meet the logical requirements.

reg_time daily daily_quantity
2019-09-03 1 1
2019-09-04 2 3
2019-09-05 2 5
2019-09-06 1 6

But there is a small pitfall here. In actual business, @i may not be 0 when initialized. For example, the total number of people from September 4th to September 6th is 1. Pay special attention to this. In actual business development, if we can implement it in logical coding, it is recommended to perform some complex operations in logical coding.

Summarize

Today we solved a problem of cumulative calculation in SQL through MySQL user variables. I wonder if you have any other good ideas? Welcome to leave a message for discussion.

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 calculate time difference function
  • Multiple ways to calculate age by birthday in MySQL
  • Method to calculate time difference in php and MySql
  • MySQL string length calculation implementation code (gb2312+utf8)
  • The meaning and calculation method of QPS and TPS of MySQL database
  • Summary of several important performance index calculation and optimization methods for MySQL
  • A brief discussion on the calculation method of key_len in mysql explain
  • How to calculate the value of ken_len in MySQL query plan
  • Example analysis of interval calculation of mysql date and time
  • Detailed explanation of MySQL date addition and subtraction functions
  • mysql trigger creation and usage examples
  • Detailed explanation of the basic usage of MySQL triggers [create, view, delete, etc.]

<<:  Linux performance monitoring tool nmon installation and usage tutorial analysis

>>:  Tomcat garbled characters in the console in IDEA and how to set IDEA encoding to UTF-8

Recommend

Display ellipsis effect when table cell content exceeds (implementation code)

illustrate In front-end development, you often en...

Detailed explanation of count without filter conditions in MySQL

count(*) accomplish 1. MyISAM: Stores the total n...

Steps and pitfalls of upgrading linux mysql5.5 to mysql5.7

Table of contents Linux MySQL 5.5 upgraded to MyS...

The difference between shtml and html

Shtml and asp are similar. In files named shtml, s...

Detailed explanation of Linux host name modification command

Linux change hostname command 1. If you only need...

Several commonly used methods for centering CSS boxes (summary)

The first one: Using the CSS position property &l...

js array fill() filling method

Table of contents 1. fill() syntax 2. Use of fill...

uniapp dynamic modification of element node style detailed explanation

Table of contents 1. Modify by binding the style ...

Detailed explanation of Linux DMA interface knowledge points

1. Two types of DMA mapping 1.1. Consistent DMA m...

Detailed instructions for installing Jenkins on Ubuntu 16.04

1. Prerequisites JDK has been installed echo $PAT...

Docker starts Redis and sets the password

Redis uses the apline (Alps) image of Redis versi...

HTML form application includes the use of check boxes and radio buttons

Including the use of check boxes and radio buttons...

Practical record of Vue3 combined with TypeScript project development

Table of contents Overview 1. Compositon API 1. W...