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:
Begin by obtaining a list of primary keys for the rows you're interested in:
SELECT min(id)
FROM sometable
GROUP BY somecolumn
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.
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