Hi guys, im trying to make a vbulletin display of this query, if anyone can help me with it please tell me how, kinda noob at vbulletin
Basically this SQL query returns the users sorted by those who have had the most thumbs up in the whole forum, which is what a lot of people on top (myself included) have been wanting! Now we just need to have it displayed on vbulletin
Code:
Select post.username, count(helpfulpost.goodrank) from helpfulpost inner join post on helpfulpost.postid = post.postid
GROUP BY post.username Order by Count(helpfulpost.goodrank) DESC