Home > Database > Mysql Tutorial > Invalid alternative for using group by and order by at the same time in mysql

Invalid alternative for using group by and order by at the same time in mysql

巴扎黑
Release: 2017-06-23 11:10:12
Original
3285 people have browsed it

Preface

In the past year, due to work needs, most of the NoSql databases have been used, and I feel more and more unfamiliar with relational databases. A combination of group by and order The murder caused by by was born from this. Make a note here for emergencies.

Requirements

First, take a look at the overall table structure.
Invalid alternative for using group by and order by at the same time in mysql
Now find the latest data in each barCode.

Because there is too much data, the effect is not very good. Let’s take a data with barCode4565789 as an example.

SELECTbarCode,
    priCommodityID,
    createDateFROMtb_history_versionWHEREbarCode = '4565789'ORDER BYcreateDate DESC;
Copy after login

Invalid alternative for using group by and order by at the same time in mysql

Trial and error

Because I haven’t written sql for a long time. So I first thought of using group by and order by combined query.

SELECTbarCode,
    priCommodityID,
    createDateFROMtb_history_versionWHEREbarCode = '4565789'GROUP BYbarCodeORDER BYcreateDate DESC;
Copy after login

The results are as follows:
Invalid alternative for using group by and order by at the same time in mysql
You can see that this is not the result we want, order by has no effect.
Next, let’s try to combine the two using subqueries. Sort first and then group

SELECT*FROM(SELECTbarCode,
            priCommodityID,
            createDateFROMtb_history_versionWHEREbarCode = '4565789'ORDER BYcreateDate DESC) AS AGROUP BYA.barCode;
Copy after login

The result is still disappointing
Invalid alternative for using group by and order by at the same time in mysql

Solution

I have tried the above two methods, Although the result is sad, the work must continue. So I searched for various information online to see if I could solve the problem in other ways. I accidentally saw that group_concat can achieve group sorting, so I gave it a try

SELECTbarCode,
    GROUP_CONCAT(
        priCommodityIDORDER BYcreateDate DESC) AS priCommodityID,
    GROUP_CONCAT(
        createDateORDER BYcreateDate DESC) AS createDateFROMtb_history_versionWHEREbarCode = '4565789';
Copy after login

The results are as follows
Invalid alternative for using group by and order by at the same time in mysql
You can see the order No problem anymore, but all the data is spliced ​​together. Further processing of intercepting characters is required

SELECTbarCode,
    SUBSTRING_INDEX(
        group_concat(
            priCommodityIDORDER BYcreateDate DESC),',',1) AS priCommodityID,
    SUBSTRING_INDEX(
        group_concat(
            createDateORDER BYcreateDate DESC),',',1) AS createDateFROMtb_history_versionWHEREbarCode = '4565789'GROUP BYbarCode;
Copy after login

Invalid alternative for using group by and order by at the same time in mysql
ok! At this point, we find that our initial needs have been achieved.

Summary

group by and order by have no effect if used at the same time. You can use group_concat and groub byreplacement. Field sorting can be implemented within group_concat.

Reference article


Initial address

http://www.devzxd.top/2017/05/27/mysql-groupby -orderby.html

The above is the detailed content of Invalid alternative for using group by and order by at the same time in mysql. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template