i have a table that looks like this:
  ID    GameID  DateID  Points  Place
-------------------------------------
  10      1       1      100      1 
  11      1       1       90      2 
  12      1       1       80      3 
  13      1       1       70      4 
  14      1       1       60      5 
  10      1       1      100      1 
  10      1       1       50      1 
  10      1       1      100      1 
  10      1       1      100      1
  10      1       1      100      1
  10      1       1      100      1
  10      1       1      100      1
  10      1       1      100      1
  10      1       1      100      1
  10      1       1       50      5
  10      1       1       50      5
  12      1       1      100      1
-------------------------------------
I want a table with two columns, one for the total points (summated scores/points) of one player and one for the id of the player. But for one player only ten scores may be counted, so for example if one player played thirteen times, only the ten highest scores are counted. For the example above I want a table that looks like this:
  ID    totalPoints
-------------------
  10      950         
  11      90          
  12      180         
  13      70          
  14      60              
------------------
At the moment I tried this:
SELECT ID, 
       sum(Points) AS totalPoints
    FROM (SELECT Points, ID
              FROM Gamer
              ORDER BY Points DESC LIMIT 10) AS totalPoints
    ORDER BY Points DESC
but it limits the entries at all to ten and not to ten per player.
I hope anybody can help me :)
 
     
    