How to use union all in MySQL to get the union sort

How to use union all in MySQL to get the union sort

Sometimes in a project, due to some irreversible reasons, the data stored in the table is difficult to meet the display requirements on the page. The previous project had a function to display article content. Articles were divided into three states: pending, published, and offline.

The values ​​of the field (PROMOTE_STATUS) used to determine the status in the data table are 0, 1, and 2 respectively. The initial requirement was that articles only be displayed as pending and published, with published being listed before pending, and the two states being sorted according to their own circumstances. This implementation is relatively simple and can be achieved with the following order by statement.

order by PROMOTE_STATUS desc, SEQUENCE_ID desc......

After the test, the product felt that this could be optimized, and the display of articles should be changed to published, to be published, and offline (yes, offline was suddenly required, and it was placed at the end very proudly). What should I do then? It is definitely not feasible to change the corresponding values ​​of PROMOTE_STATUS of released, pending release, and offline to 2, 1, and 0, because other colleagues also use this table. If the correspondence here is changed. The judgment logic of other colleagues' codes must be changed.

So I thought of union all, and then I also needed to implement the display order of the articles in the three states. Therefore, the final idea is to find out the data when PROMOTE_STATUS is 1, 0, and 2 respectively, and then sort by order according to the situation in each state, and finally return each subset to the page for display after union all.

The final SQL statement is as follows:

select
    PROMOTE_ID,
    SEQUENCE_ID,
    PROMOTE_STATUS,
    PROMOTE_TITLE,
    RELEASE_DATE
    FROM (
      (SELECT
        PROMOTE_ID,
    SEQUENCE_ID,
    PROMOTE_STATUS,
        PROMOTE_TITLE,
        RELEASE_DATE 
       FROM SYS_TEXT_PROMOTE
       WHERE
         ENABLED_FLAG = '1'
         AND PROMOTE_STATUS=1
         AND SORT_ID = #{params.sortId}
         order by SEQUENCE_ID DESC,LAST_UPDATE_DATE DESC) a)
union all
select
    PROMOTE_ID,
    SEQUENCE_ID,
    PROMOTE_STATUS,
    PROMOTE_TITLE,
    RELEASE_DATE
    FROM (
      (SELECT
        PROMOTE_ID,
    SEQUENCE_ID,
    PROMOTE_STATUS,
        PROMOTE_TITLE,
        RELEASE_DATE 
       FROM SYS_TEXT_PROMOTE
       WHERE
        ENABLED_FLAG = '1'
        AND PROMOTE_STATUS=2
        AND SORT_ID = #{params.sortId}
        order by RELEASE_DATE DESC,LAST_UPDATE_DATE DESC) b)
union all
select
    PROMOTE_ID,
    SEQUENCE_ID,
    PROMOTE_STATUS,
    PROMOTE_TITLE,
    RELEASE_DATE
    FROM (
      (SELECT
        PROMOTE_ID,
    SEQUENCE_ID,
    PROMOTE_STATUS,
        PROMOTE_TITLE,
        RELEASE_DATE 
       FROM SYS_TEXT_PROMOTE
        WHERE
        ENABLED_FLAG = '1'
        AND PROMOTE_STATUS=0
        AND SORT_ID = #{params.sortId}
        order by RELEASE_DATE DESC,LAST_UPDATE_DATE DESC) c)

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • MySQL union syntax code example analysis
  • Study on the default rules of mySQL UNION operator
  • Basic usage of UNION and UNION ALL in MySQL
  • Brief analysis of MySQL union and union all
  • How to merge multiple rows of data into one row in mysql
  • MYSQL uses Union to merge the data of two tables and display them

<<:  How to monitor Linux server status

>>:  Detailed explanation of VueRouter routing

Recommend

Complete steps to build a Laravel development environment using Docker

Preface In this article, we will use Docker to bu...

How to use Linux whatis command

01. Command Overview The whatis command searches ...

MySQL 5.7.17 installation and configuration graphic tutorial

Features of MySQL: MySQL is a relational database...

How to declare a cursor in mysql

How to declare a cursor in mysql: 1. Declare vari...

The new version of Chrome browser settings allows cross-domain implementation

Preface Currently, the front-end solves cross-dom...

Detailed explanation of the use of Linux time command

1. Command Introduction time is used to count the...

The most comprehensive collection of front-end interview questions

HTML+CSS 1. Understanding and knowledge of WEB st...

Full HTML of the upload form with image preview

The upload form with image preview function, the ...

Vue keeps the user logged in (various token storage methods)

Table of contents How to set cookies Disadvantage...

Detailed explanation of angular two-way binding

Table of contents Bidirectional binding principle...

Why are the pictures on mobile web apps not clear and very blurry?

Why? The simplest way to put it is that pixels are...

How to build ssh service based on golang image in docker

The following is the code for building an ssh ser...