View Full Version : query
sabret00the
08-15-2003, 12:23 PM
what query would i need to run to find out the number of members who have posted more than 100 times in the post 30 days but excluding mods, admins and supermods
assassingod
08-15-2003, 12:43 PM
Untested, but try:
SELECT *
FROM `user`
ORDER BY `posts` AND `lastpost` DESC
LIMIT 0 , 30
insanctus
08-15-2003, 12:45 PM
Actually I am thinking the only way to get the right number you would have to do a query on all posts, Have it sort them by members id then date.
Hmmm the only way I can think of is to much work :)
sabret00the
08-15-2003, 03:25 PM
thanks, will test it and let you know how it goes
vBulletin® v3.8.12 by vBS, Copyright ©2000-2024, vBulletin Solutions Inc.