vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   SQL Problems (https://vborg.vbsupport.ru/showthread.php?t=26800)

merk 08-29-2001 09:45 AM

Lets hope someone can help me!

Basically, i am trying to select from the database, the top 10 most posts, with the most replies, which expire after 7 days regardless, ie, only posts before 7 days ago are shown, easy you might say? well i dont actually want it 7 days from the start of the THREAD, i want it 7 days from the LAST reply.

However, for the life of me, i cant think of a way to do it.

The code i tried->
Code:

$replycountquery = "SELECT thread.*, post.*";
$replycountquery .= " FROM thread,post";
$replycountquery .= " WHERE thread.threadid=post.threadid";
$replycountquery .= " AND threadid=$newsforums";
$replycountquery .= " AND post.dateline > " . $replycountexpire;
$replycountquery .= " GROUP BY thread.threadid";
$replycountquery .= " ORDER BY threadid.replycount DESC";
$replycountquery .= " LIMIT $newsitems";

$replycountexpire, is simply a mktime function that takes the current server timestamp and taking 7 days worth off.

code ive also tried in testing, this works, however has no date stuff, as no post table is introduced.

Code:

$replycountquery = "SELECT thread.*";
$replycountquery .= " FROM thread";
$replycountquery .= " WHERE forumid = $newsforums";
$replycountquery .= " ORDER BY thread.replycount DESC";
$replycountquery .= " LIMIT $newsitems";

Id really appreicate some help!

I just wish i had more SQL books! :(

Wayne Luke 08-29-2001 01:42 PM

Try:
Code:

SELECT thread.*, post.* FROM thread
    LEFT JOIN post ON (threadid)
  WHERE thread.threadid=post.threadid
    AND forumid=$newsforums
    AND post.dateline > $replycountexpire
  GROUP BY thread.threadid";
  ORDER BY threadid.replycount DESC LIMIT 0,$newsitems";

You had "AND threadid=$newsforums" which most likely resulted in no matches within the time specified.


All times are GMT. The time now is 01:38 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.01003 seconds
  • Memory Usage 1,709KB
  • 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
  • (3)bbcode_code_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (2)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