As shown below: SELECT count(DISTINCT(a.rect_id)) zcount, a.job_dept, DATE_FORMAT(submit_date, '%Y-%m') zsubmit_date FROM Table Namea WHERE a.status = 3 AND a.rstatu = 2 AND a.job_dept IN ('19', '20', '21') GROUP BY a.job_dept, DATE_FORMAT(submit_date, '%Y-%m') The key is that DATE_FORMAT (submit_date, '%Y-%m') groups and sorts the time, year and month. SELECT zsubmit_date, MAX(CASE WHEN job_dept = '19' THEN zcount ELSE 0 END ) 19zcount, MAX(CASE WHEN job_dept = '20' THEN zcount ELSE 0 END ) 20zcount, MAX(CASE WHEN job_dept = '21' THEN zcount ELSE 0 END ) 21zcount FROM ( SELECT count(DISTINCT(a.rect_id)) zcount, a.job_dept, DATE_FORMAT(submit_date, '%Y-%m') zsubmit_date FROM Table Namea WHERE a.status = 3 AND a.rstatu = 2 AND a.job_dept IN ('19', '20', '21') GROUP BY a.job_dept, DATE_FORMAT(submit_date, '%Y-%m') ) q GROUP BY zsubmit_date The above MySQL column to row conversion and year-month grouping example is all the content that the editor shares with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Detailed explanation of nginx reverse proxy webSocket configuration
>>: Implementation of k8s node rejoining the master cluster
Table of contents 1. Install Docker 2. Install Gi...
Question Guide 1. How does Hadoop 3.x tolerate fa...
Purpose Encapsulate the carousel component and us...
Written in advance: In the following steps, you n...
Table of contents 1. Introduction to autofs servi...
Now 2016 server supports multi-site https service...
This article shares the specific code for JavaScr...
This article introduces the command statements fo...
Problem Description A Spring + Angular project wi...
Recently, I have a project that requires using ifr...
1. Favicon.cc To create ico icon websites online,...
This article describes the MySQL data types and f...
Locks in MySQL Locks are a means to resolve resou...
MySQL advantage: Small size, fast speed, low tota...
First, start MySQL in skip-grant-tables mode: mys...