"If a worker wants to do his job well, he must first sharpen his tools." - Confucius, "The Analects of Confucius. Lu Linggong"
Front page > Programming > How to Retrieve the First Row of Each Group in MySQL?

How to Retrieve the First Row of Each Group in MySQL?

Posted on 2025-03-23
Browse:978

How to Retrieve the First Row of Each Group in MySQL?

Extracting First Rows from Groups in MySQL

You're seeking a way to retrieve the first row for each group in MySQL. While the C# and Linq-To-Sql approaches provided are incompatible with MySQL, we can utilize a different technique.

In MySQL, you can employ subselects to achieve this:

  1. Begin by obtaining a list of primary keys for the rows you're interested in:

    SELECT min(id) 
    FROM sometable 
    GROUP BY somecolumn
  2. Subsequently, utilize this set of primary keys to filter and select the data you require:

    SELECT somecolumn, anothercolumn 
    FROM sometable 
    WHERE id IN (
       SELECT min(id) 
       FROM sometable 
       GROUP BY somecolumn
    );

This method allows you to retrieve the first row for each group without the need for complex T-SQL translations.

Latest tutorial More>

Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.

Copyright© 2022 湘ICP备2022001581号-3