Selecting values grouped to a specific identifer - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T18:19:23Zhttp://stackoverflow.com/feeds/question/118443http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/118443/selecting-values-grouped-to-a-specific-identifer1Selecting values grouped to a specific identiferToby Hede2008-09-23T00:36:20Z2008-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#1184460Answer by S.Lott for Selecting values grouped to a specific identiferS.Lott2008-09-23T00:37:38Z2008-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#1184510Answer by JustinD for Selecting values grouped to a specific identiferJustinD2008-09-23T00:38:59Z2008-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#1184575Answer by Alexander Kojevnikov for Selecting values grouped to a specific identiferAlexander Kojevnikov2008-09-23T00:40:22Z2008-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#1184850Answer by S.Lott for Selecting values grouped to a specific identiferS.Lott2008-09-23T00:49:55Z2008-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#1184891Answer by Mez for Selecting values grouped to a specific identiferMez2008-09-23T00:50:27Z2008-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#1185620Answer by Toby Hede for Selecting values grouped to a specific identiferToby Hede2008-09-23T01:08:12Z2008-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>