Analysis of the principle and usage of MySQL continuous aggregation

Analysis of the principle and usage of MySQL continuous aggregation

This article uses examples to illustrate the principle and usage of MySQL continuous aggregation. Share with you for your reference, the details are as follows:

Continuous aggregation is the operation of aggregating ordered data in time order.

In the following examples, the EmpOrders table is used to store the order quantity of each employee each month.

Run the following code to create the EmpOrders table and populate it with sample data.

CREATE TABLE EmpOrders (
empid INT NOT NULL,
ordermonth DATE NOT NULL,
qty INT NOT NULL,test
PRIMARY KEY (empid,ordermonth)
);

Query the order table and orderdetails table and insert the orders for each month into the EmpOrder table. The SQL statement is as follows (the trick is to group by month)

INSERT INTO EmpOrders
SELECT a.employeeid,orderdate AS Order date,SUM(quantity) AS qty
FROM orders a
INNER JOIN orderdetails b
ON a.orderid=b.orderid
GROUP BY employid,DATE_FORMAT(orderdate,'%Y-m');

The following is the PHP file that generates sample data

<?php
$sql = "INSERT INTO emporders SELECT %s,'%s-%02d-01',%s;".'<br />';
$insert_sql = '';
for($empid=1;$empid<=8;$empid++)
{
  for($year=2009;$year<=2015;$year++)
  {
    for($month=1;$month<=12;$month++)
    {
      $num = rand(20,800);
      $insert_sql .= sprintf($sql,$empid,$year,$month,$num);
    }
    $insert_sql .= '<br />';
  }
}
echo $insert_sql;

The following is part of the data of the employee order table EmpOrder

The following discusses three continuous aggregation issues based on the EmpOrders table: cumulative, sliding, and year-to-date.

Readers who are interested in more MySQL-related content can check out the following topics on this site: "MySQL query skills", "MySQL common functions summary", "MySQL log operation skills", "MySQL transaction operation skills summary", "MySQL stored procedure skills" 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:
  • Usage and performance optimization techniques of aggregate function count in MySQL
  • Detailed explanation of MySQL commonly used aggregate functions
  • How to add conditional expressions to aggregate functions in MySql
  • php+mysql open source XNA aggregation program released for download
  • Mysql cannot select non-aggregate columns
  • Detailed explanation of MySQL single table query operation examples [syntax, constraints, grouping, aggregation, filtering, sorting, etc.]
  • Analysis of MySQL query sorting and query aggregation function usage
  • MySQL uses aggregate functions to query a single table
  • MySQL grouping queries and aggregate functions
  • Optimizing the slow query of MySQL aggregate statistics data

<<:  jQuery implements HTML element hiding and display

>>:  How to use Celery and Docker to handle periodic tasks in Django

Recommend

Linux kernel device driver kernel linked list usage notes

/******************** * Application of linked lis...

Detailed explanation of CSS animation attribute keyframes

How long has it been since I updated my column? H...

Detailed explanation of scheduled tasks and delayed tasks under Linux

at at + time at 17:23 at> touch /mnt/file{1..9...

Some key points of website visual design

From handicraft design to graphic design to web de...

Detailed explanation of Vue advanced construction properties

Table of contents 1. Directive custom directive 2...

How to deploy Confluence and jira-software in Docker

version: centos==7.2 jdk==1.8 confluence==6.15.4 ...

Web page text design should be like smart girls wearing clothes

<br />"There are no ugly women in the w...

Mysql queries the transactions being executed and how to wait for locks

Use navicat to test and learn: First use set auto...

Detailed explanation of sshd service and service management commands under Linux

sshd SSH is the abbreviation of Secure Shell, whi...

A practical record of restoring a MySQL Slave library

Description of the situation: Today, I logged int...

Summary of Problems in Installation and Usage of MySQL 5.7.19 Winx64 ZIP Archive

Today I learned to install MySQL, and some proble...

About React Native unable to link to the simulator

React Native can develop iOS and Android native a...

View the frequently used SQL statements in MySQL (detailed explanation)

#mysql -uroot -p Enter password mysql> show fu...