vote up 0 vote down star
1

I am working on a rankings page for a game and am looking to order the rankings first by wins, and then by losses (in case of people having the same number of wins). The following query works fine in order to make a list in order by wins, but I am not sure how to put losses into this query.

SELECT username, COUNT(id) AS wins 
  FROM tblBattleHistory 
  WHERE battle_type = '0' && outcome = '1' 
  GROUP BY username 
  ORDER BY wins DESC

outcome = '1' means they won, so when outcome = '0' then that means they lost.

flag

5 Answers

vote up 7 vote down check

You can do it like this:

SELECT username, SUM(outcome) AS wins, COUNT(*) - SUM(outcome) AS losses
  FROM tblBattleHistory 
  WHERE battle_type = '0'
  GROUP BY username 
  ORDER BY wins DESC, losses
link|flag
Looks like this should work. +1 – Lior Cohen Nov 7 at 23:38
Are there ties? – d03boy Nov 7 at 23:45
1  
This doesn't work if there are ties. – IronGoofy Nov 7 at 23:56
+1, re @IronGoofy the answer is to get the OP on the right track, u don't need to code it for him ;) – Freddy Rios Nov 8 at 0:12
Lol, leave it to programmers to complicate something. There was no mention of ties at all in the OP, so why ask it? You may as well as if night-time games count. – gmagana Nov 8 at 0:14
show 2 more comments
vote up 0 vote down

This might also work:

SELECT username, SUM(IF(outcome = 1, 1, 0)) AS Wins, SUM(IF(outcome = 0, 1, 0)) AS Losses FROM tblBattleHistory

Bobby

link|flag
vote up 3 vote down

Here's my idea:

SELECT username, SUM (CASE WHEN outcome = '1' Then 1 Else 0 End) As Wins,
    SUM (CASE WHEN outcome = '0' Then 1 Else 0 End) As Losses
FROM tblBattleHistory 
WHERE battle_type = '0'
GROUP BY username 
ORDER BY wins DESC, Losses ASC

(Depending on your DBMS, you may have to repeat the SUMs in the Order By rather than use the aliases.)

This also allows to to come up with some stranger points schemes, for example for German football (win=3, tie=1 point)

SELECT username, SUM (CASE
    WHEN outcome = '1' Then 3 
    WHEN outcome = '2' Then 1 /* 2 is a tie */
    ELSE 0 End) As Points
etc.
link|flag
vote up 0 vote down
SELECT username, losses, wins
FROM (
    SELECT username, COUNT(id) AS wins 
    FROM tblBattleHistory
    WHERE battle_type = '0' && outcome = '1' 
    GROUP BY username
) A
LEFT JOIN (
    SELECT username, COUNT(id) as losses
    FROM tblBattleHistory
    WHERE battle_type = '0' && outcome = '0'
) B ON A.username = B.username
ORDER BY wins DESC, losses ASC

This may not be an efficient query but does the job.

link|flag
vote up 0 vote down

I undestand that my answer is obviosly not what you asked, but... i think instead of getting counts from tblBattleHistory you should add 2 fileds to you Users table (wins, fails) and update them (maybe via insert trigger on tblBattleHistory) so you have all data at hands availabe via simple select.

link|flag
2  
That would be considered redundant and de-normalization. Don't denormalize unless you have performance problems! – d03boy Nov 7 at 23:46
If you want to simplify this via a "simple" SELECT then set up a view and do your simple select off that... No need to f**k up the DB design just to have simple queries. You DO know what a view is, right? – gmagana Nov 8 at 0:16
actually this is neither redundancy nor denormalization. this is just straight forward domain design. there is a user and user has win/loose ratio. this is absolutely not about performance. --- as for the view - the view you propose is a direct result of dumb domain models' design (no need to talk that these models are mapped to dumb DB structure) imo, of course :) – COTOHA Nov 14 at 0:28

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.