MySQL query statement grouped by time

MySQL query statement grouped by time

MySQL query by year, month, week, day group

1. Query by year group

SELECT DATE_FORMAT(t.bill_time,'%Y') month_time,sum(t.pay_price) total FROM f_bill t GROUP BY month_time;

Query results

2. Query by month group

SELECT DATE_FORMAT(t.bill_time,'%Y-%m') month_time,sum(t.pay_price) total FROM f_bill t GROUP BY month_time;

Query results

3. Query by week group

SELECT CONCAT(SUBSTR(DATE_FORMAT(t.bill_time,'%Y-%u') FROM 1 FOR 4),'第',SUBSTR(DATE_FORMAT(t.bill_time,'%Y-%u'),6),'周') week_time,sum(t.price) total FROM f_bill t GROUP BY week_time;

Query results

4. Query by day group

SELECT DATE_FORMAT(t.bill_time,'%Y-%m-%d') month_time,sum(t.pay_price) total FROM f_bill t GROUP BY month_time;

Query results

This is the end of this article about MySQL group query by time. For more relevant MySQL group query content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • MySql query time period method
  • How to use MySQL DATEDIFF function to get the time interval between two dates
  • How to query date and time in mysql
  • MySql database time series interval query method

<<:  Discussion on horizontal and vertical centering of elements in HTML

>>:  JavaScript function call classic example code

Recommend

How to use libudev in Linux to get USB device VID and PID

In this article, we will use the libudev library ...

How to use Linux paste command

01. Command Overview The paste command will merge...

Summary of flex layout compatibility issues

1. W3C versions of flex 2009 version Flag: displa...

Practical record of vue using echarts word cloud chart

echarts word cloud is an extension of echarts htt...

Ubuntu installation Matlab2020b detailed tutorial and resources

Table of contents 1. Resource files 2. Installati...

How to use the Linux seq command

1. Command Introduction The seq (Sequence) comman...

Let's talk about the issue of passing parameters to React onClick

Background In a list like the one below, clicking...

Tutorial on installing MySQL 5.6 using RPM in CentOS

All previous projects were deployed in the Window...

How to build pptpd service in Alibaba Cloud Ubuntu 16.04

1. To build a PPTP VPN, you need to open port 172...

Install Docker for Windows on Windows 10 Home Edition

0. Background Hardware: Xiaomi Notebook Air 13/In...

Pure js to achieve the effect of carousel

This article shares the specific code of js to ac...