Implement group by based on MySQL to get the latest data of each group

Implement group by based on MySQL to get the latest data of each group

Preface:

The group by function retrieves the first piece of data in the group, but sometimes we need to retrieve the latest piece of data in each group. How can we achieve this?

This article provides two implementation methods.

1. Prepare data

http://note.youdao.com/noteshare?id=dba748092a619be0a8f160ccf6e25a5f&sub=FD4C1C7823CA440DB360FEA3B4A905CD

Two, three implementation methods

1) Order by first and then group:

SELECT * FROM (SELECT * from tb_dept ORDER BY id descLIMIT 10000) a GROUP BY parent_id;

Not adding LIMIT may be invalid due to MySQL version issues. But I always feel that this way of writing is not very serious, because if the amount of data is greater than the Limit value, the result will be inaccurate. So there is a second way of writing.

2) Using the max() function:

SELECT * FROM tb_dept td,(SELECT max(id) id FROM tb_dept GROUP BY parent_id) md where td.id = md.id;

3) Use the where field name in (...) function:

SELECT * FROM tb_dept WHERE id IN (SELECT MAX(id) FROM tb_dept GROUP BY parent_id);

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:
  • Detailed explanation of the group by statement in MySQL database group query
  • Detailed explanation of group by and having in MySQL
  • MySQL efficient query left join and group by (plus index)
  • Detailed explanation of MySQL Group by optimization
  • How to optimize MySQL group by statement
  • How to use MySQL group by and order by together
  • mysql group by grouping multiple fields
  • A brief discussion on group by in MySQL

<<:  Common ways to optimize Docker image size

>>:  Detailed explanation of using Baidu style in eslint in React project

Recommend

Detailed description of the use of advanced configuration of Firewalld in Linux

IP masquerading and port forwarding Firewalld sup...

An example of how Vue implements four-level navigation and verification code

Effect: First create five vue interfaces 1.home.v...

A detailed introduction to Linux system configuration (service control)

Table of contents Preface 1. System Service Contr...

HTML+CSS to achieve drop-down menu

1. Drop-down list example The code is as follows:...

DOCTYPE type detailed introduction

<br />We usually declare DOCTYPE in HTML in ...

Introduction to basic concepts and technologies used in Web development

Today, this article introduces some basic concept...

Detailed explanation of commands to view linux files

How to view linux files Command to view file cont...

How to quickly insert 10 million records into MySQL

I heard that there is an interview question: How ...

In-depth analysis of Nginx virtual host

Table of contents 1. Virtual Host 1.1 Virtual Hos...

JavaScript navigator.userAgent obtains browser information case explanation

The browser is probably the most familiar tool fo...

Docker container orchestration implementation process analysis

In actual development or production environments,...

Complete steps to install MySQL 8.0.x on Linux

MySQL Introduction to MySQL MySQL was originally ...

Vue implements bottom query function

This article example shares the specific code of ...

How to generate a free certificate using openssl

1: What is openssl? What is its function? What is...