PDA

View Full Version : Query top 5 threads


logical.angel
05-08-2007, 04:56 AM
Hello, since that vbulletin's database is sooo big, am having a hell of a time trying to get the details of each tables (plus i have a crappy internet connection), the thing is, i wish to display the top 5 threads according to the number of views a thread got, but i don't know the table names and field names i must use.

NOTE: Assume that i am using the normal unmodified prefix of vbulletin's table and field format.

the displaying of the top 5 is trivial, since it is just a while loop, but i don't know what query i must use to get the thread id, name and its number of views (am confused with soo much of tables.)

thanks

+la

Dismounted
05-08-2007, 07:43 AM
SELECT *
FROM " . TABLE_PREFIX . "thread
ORDER BY dateline
LIMIT 5

Then just do a while loop to loop through the thread's data.

Eikinskjaldi
05-08-2007, 11:48 PM
The above query will show the threads by creation. The thread table actually has a views field, which can be used (though in vanilla VB it is not indexed, so it's a very inefficient query).

SELECT threadid, title, views
FROM " . TABLE_PREFIX . "thread
ORDER BY views desc
LIMIT 5