MySQL column to row conversion and year-month grouping example

MySQL column to row conversion and year-month grouping example

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:
  • How to convert a column of comma-separated values ​​into columns in MySQL
  • Detailed explanation of MySQL row locks when encountering composite primary keys and multi-column indexes
  • Mysql method to calculate the difference between two adjacent rows of a column
  • How to sort a row or column in mysql
  • MySQL column to row conversion, method of merging fields (must read)
  • MySQL column to row conversion tips (share)
  • Detailed examples of converting rows to columns and columns to rows in MySQL
  • Implementation of dynamic conversion of mysql rows and columns (contingency table, cross table)
  • Database implementation of row and column conversion (mysql example)
  • How to convert rows to columns in MySQL

<<:  Detailed explanation of nginx reverse proxy webSocket configuration

>>:  Implementation of k8s node rejoining the master cluster

Recommend

Detailed tutorial on using Docker to build Gitlab based on CentOS8 system

Table of contents 1. Install Docker 2. Install Gi...

Hadoop 2.x vs 3.x 22-point comparison, Hadoop 3.x improvements over 2.x

Question Guide 1. How does Hadoop 3.x tolerate fa...

How to encapsulate the carousel component in Vue3

Purpose Encapsulate the carousel component and us...

Ubuntu 18.04 obtains root permissions and logs in as root user

Written in advance: In the following steps, you n...

Linux Autofs automatic mount service installation and deployment tutorial

Table of contents 1. Introduction to autofs servi...

Windows Server 2016 Quick Start Guide to Deploy Remote Desktop Services

Now 2016 server supports multi-site https service...

JavaScript implements select all and unselect all operations

This article shares the specific code for JavaScr...

Example of how to check the capacity of MySQL database table

This article introduces the command statements fo...

Example of troubleshooting method to solve Nginx port conflict

Problem Description A Spring + Angular project wi...

A brief analysis of whether using iframe to call a page will cache the page

Recently, I have a project that requires using ifr...

Collection of 12 practical web online tools

1. Favicon.cc To create ico icon websites online,...

Summary of MySQL lock related knowledge

Locks in MySQL Locks are a means to resolve resou...

How to change the root password of Mysql5.7.10 on MAC

First, start MySQL in skip-grant-tables mode: mys...