Mysql grouping statement

Source: Internet
Author: User

Mysql year/year grouping statement Java code SELECT count (DISTINCT (. rect_id) zcount,. job_dept, DATE_FORMAT (submit_date, '% Y-% m') zsubmit_date FROM table name a WHERE. statu = 3 AND. rstatu = 2 AND. job_dept IN ('19', '20', '21') group by. job_dept, DATE_FORMAT (submit_date, '% Y-% m') The key lies in DATE_FORMAT (submit_date,' % Y-% m ') grouping and sorting of the time month and month Java code SELECT zsubmit_date, MAX (case when job_dept = '19' THEN zcount ELSE 0 END) 19 zcount, MAX (case when job_dept = '20' THEN zcount ELSE 0 END) 20 zcount, MAX (case when job_dept = '21' THEN zcount ELSE 0 END) 21 zcount FROM (SELECT count (DISTINCT (. rect_id) zcount,. job_dept, DATE_FORMAT (submit_date, '% Y-% m') zsubmit_date FROM table name a WHERE. statu = 3 AND. rstatu = 2 AND. job_dept IN ('19', '20', '21') group by. job_dept, DATE_FORMAT (submit_date, '% Y-% m') q group by zsubmit_date The above is the column-to-row of mysql. The key point here is the usage of case when, which is used to perform column-to-row operations.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.