Selecting values grouped to a specific identifer - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T18:19:23Z http://stackoverflow.com/feeds/question/118443 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/118443/selecting-values-grouped-to-a-specific-identifer 1 Selecting values grouped to a specific identifer Toby Hede 2008-09-23T00:36:20Z 2008-09-23T01:10:01Z <p>I have an application that tracks high scores in a game. </p> <p>I have a <strong>user_scores</strong> table that maps a user_id to a score.</p> <p>I need to return the 5 highest scores, but only 1 high score for any <em>specific</em> user.</p> <p>So if user X has the 5 highest scores on a purely numerical basis, I simply return the highest one and then the next 4 user scores.</p> <p>I have tried to use:</p> <pre><code>SELECT user_id, score FROM user_scores ORDER BY score DESC GROUP BY user_id LIMIT 5 </code></pre> <p>But it seems that MySQL drops any user_id with more than 1 score. </p> http://stackoverflow.com/questions/118443/selecting-values-grouped-to-a-specific-identifer/118446#118446 0 Answer by S.Lott for Selecting values grouped to a specific identifer S.Lott 2008-09-23T00:37:38Z 2008-09-23T00:37:38Z <p>You can't group by without a summary-function (SUM, COUNT, etc.)</p> <p>The GROUP BY clause says how to group the SUMs or COUNTs.</p> <p>If you simply want to break the long list into bunches with a common value, that's not SQL. That's what your application has to do.</p> http://stackoverflow.com/questions/118443/selecting-values-grouped-to-a-specific-identifer/118451#118451 0 Answer by JustinD for Selecting values grouped to a specific identifer JustinD 2008-09-23T00:38:59Z 2008-09-23T00:38:59Z <p>Can you use the Distinct operator to say</p> <pre><code>SELECT DISTINCT(user_id), score FROM user_scores ORDER BY score DESC LIMIT 5 </code></pre> <p>didn't test so not sure if that will definitely work</p> http://stackoverflow.com/questions/118443/selecting-values-grouped-to-a-specific-identifer/118457#118457 5 Answer by Alexander Kojevnikov for Selecting values grouped to a specific identifer Alexander Kojevnikov 2008-09-23T00:40:22Z 2008-09-23T00:55:25Z <p>This should work:</p> <pre><code>SELECT user_id, MAX(score) FROM user_scores GROUP BY user_id ORDER BY MAX(score) DESC LIMIT 5 </code></pre> http://stackoverflow.com/questions/118443/selecting-values-grouped-to-a-specific-identifer/118485#118485 0 Answer by S.Lott for Selecting values grouped to a specific identifer S.Lott 2008-09-23T00:49:55Z 2008-09-23T00:49:55Z <p>Returning only the maximum score for a given user is something like the following.</p> <pre><code>SELECT user_id, max(score) FROM user_scores GROUP BY user_id </code></pre> http://stackoverflow.com/questions/118443/selecting-values-grouped-to-a-specific-identifer/118489#118489 1 Answer by Mez for Selecting values grouped to a specific identifer Mez 2008-09-23T00:50:27Z 2008-09-23T01:10:01Z <pre><code>SELECT user_id, MAX(score) AS score FROM user_scores GROUP BY user_id ORDER BY score DESC LIMIT 5 </code></pre> <p>Should do the job for you... though don't forget to create indexes...</p> http://stackoverflow.com/questions/118443/selecting-values-grouped-to-a-specific-identifer/118562#118562 0 Answer by Toby Hede for Selecting values grouped to a specific identifer Toby Hede 2008-09-23T01:08:12Z 2008-09-23T01:08:12Z <p>I don't know whether it was a lack of caffeine or just brain explosion, but the answers here were so easy.</p> <p>I actually got it working with this monstrosity:</p> <pre><code>SELECT s1.user_id, (SELECT score FROM user_scores s2 WHERE s2.user_id = s1.user_id ORDER BY score DESC LIMIT 1) AS score FROM user_scores s1 GROUP BY s1.user_id ORDER BY s1.score DESC LIMIT 5 </code></pre>