The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
|
#1
|
|||
|
|||
![]()
I have hardly worked with queries and I am trying to adjust a mod to show the first attachment of the first post of a specific forum.
Code:
$query_attachments = $vbulletin->db->query_read(" SELECT thread.threadid, thread.firstpostid, thread.forumid, attachment.extension, attachment.postid, attachment.attachmentid FROM " . TABLE_PREFIX . "attachment INNER JOIN " . TABLE_PREFIX . "thread ON thread.firstpostid=attachment.postid WHERE (attachment.extension = 'jpg' OR attachment.extension = 'gif' OR attachment.extension = 'png') AND thread.forumid=6 AND dateline < " . TIME() ." ORDER BY dateline DESC LIMIT 5"); -thread.threadid can be used to link to a specific post using a hyperlink. -thread.firstpostid has to match attachment.postid. Hopefully, this will return the threads with attachments. -using the where clause, i want to restrict the returns to forum ID 6 only. I have only tried simple queries in the past (first use of inner join) and I am wondering if the general idea for this query is sound. Any help or hints is appreciated. |
![]() |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|