![]() |
Winning Usergroup SQL query??
I have 5 usergroups.. i have an sql queries that tallies up all the points they have gathered.
What i want now is an sql queries to see which usergroup has the highest points from its members AND then display it. So it looks at usergroup a, b, c, d and e and finds c has the highest number of points. Each member has points on their profile. Thanks |
obiwan,
try this query: [sql]SELECT SUM(points) AS total FROM user GROUP BY usergroupid DESC LIMIT 1[/sql] Cheers, g-force2k2 |
Hi, thanks for that. It worked. but i decided I wanted the title to show up. So i put into my index.php thing and made a querie but it wont show up the title of the winning group at all.
$totalpoint=$DB_site->query_first('SELECT user.membergroupids,max(points) AS tt FROM user WHERE user.membergroupids GROUP BY user.membergroupids'); $totalx=$totalpoint[user.membergroupids]; $total=$DB_site->query_first('SELECT usergroup.title FROM usergroup WHERE usergroup.usergroupid="$totalpoint"'); $totalz=$total[usergroup.title]; any help? |
you just havt to join the usergroup table into g-force's query:
[sql] SELECT SUM(user.points) AS total, usergroup.title FROM user LEFT JOIN usergroup USING (usergroupid) GROUP BY user.usergroupid DESC ORDER BY total LIMIT 1[/sql] |
All times are GMT. The time now is 11:21 PM. |
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|