Jump to content

add up like rows and order by


cdoyle

Recommended Posts

Hi,

this seems like it would be easy,  but I can't seem to get it to work.

 

Here is what I want to do,  I have a table that has the following structure.

 

ID

player_id

enemy_id

 

I want to have to display the top 5 players who have the most enemies

 

so I need to group the 'enemy_id' field and then sort it by the highest count.

 

so if I have data like this

 

row 1 | enemy_id=121   (ME)

row 2 | enemy_id=134   (Someone else)

row 3 | enemy_id=121   (ME)

 

the result would look something like this on my page

 

ME = 2

someone else 1
 

How can I do this?

 

Thanks

Chris

Link to comment
Share on other sites

Thanks for your help.

I tried this but it's not quite working,  if I wanted to display the count I would use 'enemies' correct?

 

Right now,  all entries are showing '1' as the total enemy count.

 

I did write it a little differently than you though.

 

I basically want to see the players who have been marked as a 'enemy' the most

So I did this,  I think yours would show who marked the most people as an enemy?  but I could be wrong.

 

SELECT enemy_id, COUNT(DISTINCT enemy_id) as enemies
FROM tablename
GROUP BY enemy_id
ORDER BY enemies DESC

 

but everything is showing 1.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.