vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Winning Usergroup SQL query?? (https://vborg.vbsupport.ru/showthread.php?t=61054)

obiwan8472 02-01-2004 10:16 PM

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

g-force2k2 02-02-2004 04:05 AM

obiwan,

try this query:

[sql]SELECT SUM(points) AS total
FROM user
GROUP BY usergroupid DESC LIMIT 1[/sql]

Cheers,
g-force2k2

obiwan8472 02-02-2004 11:02 PM

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?

Xenon 02-02-2004 11:11 PM

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
  • Page Generation 0.01123 seconds
  • Memory Usage 1,716KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (4)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete