Comparison between mysql group by and order

Source: Internet
Author: User

I need to retrieve the latest content in each category.

Copy the Code as follows:
Select * from test group by category_id order by 'date'


The result is as follows:

Obviously. This is not the data I want, because the execution sequence of msyql is


Reference

Write order: select... from... where... group by... having... order ..
Execution sequence: from... where... group by... having... select... order...


Therefore, the result obtained by order by is the final result of grouping.
The result from where to from is as follows.

At group by, multiple groups are obtained according to category_id.


When the select statement is adopted, the result is as follows:

Even order by is sorted from the above results. Not the latest information for each category.
Back to my goal-the latest information in the category
According to the above analysis, only the first information in the group is obtained when group by is selected. There are two solutions
1. where + group by (sort groups)
2. The data returned from form has the following hands and feet (I .e., subquery)

Solution by where + group
I only find that group_concat () can be used to sort groups in group by, but group_concat is used to concatenate values in fields in the group.

Select group_concat (id order by 'date' desc) from 'test' group by category_id


Try again

Select * from 'test' where id in (select substring_index (group_concat (id order by 'date' desc), ',', 1) from 'test' group by category_id) order by 'date' desc

 

Subquery Solution

Select * from (select * from 'test' order by 'date' desc) 'temp 'group by category_id order by 'date' desc

Data Table Structure


Create table 'test '(
'Id' int (10) not null auto_increment,
'Name' varchar (255) not null,
'Category _ id' int (10) not null,
'Date' timestamp not null default current_timestamp,
Primary key ('id ')
)
Engine = myisam
Row_format = default;
Insert into 'test' ('id', 'name', 'category _ id', 'date ')
Values
(1, 'aaa', 1, '2017-06-10 19:14:37 '),
(2, 'bbb ', 2, '2017-06-10 19:14:55 '),
(3, 'ccc ', 1, '2017-06-10 19:16:02 '),
(4, 'ddd ', 1, '2017-06-10 19:16:15 '),
(5, 'Eee ', 2, '2017-06-10 19:16:35 ');

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.