Jump to content

[SOLVED] DISTINCT() issues


bradcis

Recommended Posts

Here is what I am trying to accomplish. I have one table that has a bunch of peoples names and numbers. Each person has multiple numbers. I am trying to make display the top 10 users based on their highest numbers. Therefore, each person may only come up once. I am trying to do SELECT DISTINCT(`name`), `number` FROM `users` ORDER BY `number` DESC. However, this will only pull the first row inserted for each user, rather than pull the highest row for each user. I know I can't use DISTINCT() for this very reason, but I am not sure how to go about getting these values.

 

I can't imagine this being that difficult, but I don't have any experience working with MySQL than the most basic queries.

 

Any assistance would be greatly appreciated!

Link to comment
https://forums.phpfreaks.com/topic/180220-solved-distinct-issues/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.