mysql obtains statistical data within a specified time period

mysql obtains statistical data within a specified time period

mysql obtains statistical data within a specified time period

Statistics by year

SELECT 
  count(*), 
  DATE_FORMAT(order_info.create_time, '%Y-%m-%d') AS count_by_date 
FROM 
  order_info 
WHERE 
  DATE_FORMAT(order_info.create_time, '%Y') = '2017' 
GROUP BY 
  count_by_date 
ORDER BY NULL 

Statistics by month

SELECT 
  count(*), 
  DATE_FORMAT(order_info.create_time, '%Y-%m-%d') AS count_by_date 
FROM 
  order_info 
WHERE 
  DATE_FORMAT(order_info.create_time, '%Y-%m') = '2017-04' 
GROUP BY 
  count_by_date 
ORDER BY NULL 

The specific transformation can be changed according to your needs

Thank you for reading, I hope it can help you, thank you for your support of this site!

You may also be interested in:
  • MySQL statement to get all dates or months in a specified time period (without setting stored procedures or adding tables)
  • How to use MySQL DATEDIFF function to get the time interval between two dates
  • Mysql timeline data to obtain the first three data of the same day
  • Detailed explanation of MySQL to obtain statistical data for each day and each hour of a certain period of time
  • MySQL example of getting today and yesterday's 0:00 timestamp
  • mysql gets yesterday's date, today's date, tomorrow's date, and the time of the previous hour and the next hour
  • How to get time in mysql

<<:  js to write the carousel effect

>>:  Detailed installation and use of virtuoso database under Linux system

Recommend

Ubuntu 16.04 kernel upgrade steps

1. Environment Ubuntu 16.04 running on a virtual ...

RGB color table collection

RGB color table color English name RGB 16 colors ...

Detailed explanation of how to view the number of MySQL server threads

This article uses an example to describe how to v...

Quickly install MySQL5.7 compressed package on Windows

This article shares with you how to install the M...

Markup language - web application CSS style

Click here to return to the 123WORDPRESS.COM HTML ...

JavaScript deshaking and throttling examples

Table of contents Stabilization Throttling: Anti-...

Example code of javascript select all/unselect all operation in html

Copy code The code is as follows: <html> &l...

Vue realizes dynamic progress bar effect

This article example shares the specific code of ...

How to install and use Cockpit on CentOS 8/RHEL 8

Cockpit is a web-based server management tool ava...

CentOS 7 cannot access the Internet after modifying the network card

Ping www.baidu.com unknown domain name Modify the...

Detailed steps to install MYSQL8.0 on CentOS7.6

1. Generally, mariadb is installed by default in ...

JS implements random roll call system

Use JS to implement a random roll call system for...

Implementation of MySQL scheduled backup script under Windows

On a Windows server, if you want to back up datab...