vb.org Archive

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

sabret00the 05-18-2004 06:46 PM

query problem
 
been playing with this query for days and despite it working almost fine, it refuses to work really fine, it refuses to pull projects without a rating and i really need it to do that, can someone help me please as i dunno where i've gone wrong :(

PHP Code:

            // handles end user view options
             
switch ($view
             { 
                 case 
"latest":
                     
$group "GROUP BY project_rate.projectid";
                     
$order "ORDER BY project_rate.projectid DESC";
                     
$limit "LIMIT 10";
                 break;
                 case 
"random":
                     
$group "GROUP BY project_rate.projectid";
                     
$order "ORDER BY RAND(project_rate.projectid)";
                 break; 
                 case 
"votes":
                     
$group "GROUP BY project_rate.rate";
                     
$order "ORDER BY project_rate.rate DESC, project_rate.projectid DESC";
                 break;  
                 default:
                     
$group "GROUP BY project_rate.projectid";
                     
$order "ORDER BY project_rate.projectid DESC";
                     
$limit "LIMIT " . ($minlimit-1) . ", $perpage"
             }
 
 
 
             
// extracts projects for main project page
             
$projects $DB_site->query("
                 SELECT COUNT(*) AS votes, project_rate.projectid,
                 projects.text, project_rate.rate, projects.timestamp,
                 user.username
                 FROM project_rate
                 LEFT JOIN projects ON (project_rate.projectid = projects.projectid)
                 LEFT JOIN user ON (user.userid = projects.userid)
                 
$clause
                 
$group
                 
$order
                 
$limit 
             "
); 


sabret00the 05-18-2004 08:39 PM

fixed it :D
PHP Code:

            switch ($view
             { 
                 case 
"latest":
                     
$group "GROUP BY confessions.confessionid";
                     
$order "ORDER BY confessions.confessionid DESC";
                     
$limit "LIMIT 10";
                 break;
                 case 
"random":
                     
$group "GROUP BY confessions.confessionid";
                     
$order "ORDER BY RAND(confessions.confessionid)";
                 break; 
                 case 
"votes":
                     
$group "GROUP BY confessions.rate";
                     
$order "ORDER BY confessions.rate DESC, confessions.confessionid DESC";
                 break;  
                 default:
                     
$group "GROUP BY confessions.confessionid";
                     
$order "ORDER BY confessions.confessionid DESC";
                     
$limit "LIMIT " . ($minlimit-1) . ", $perpage"
             }
 
 
 
             
// extracts confessions for main confession page
             
$confessions $DB_site->query("
                 SELECT COUNT(*) AS votes, confessions.confessionid,
                 confessions.text, confession_rate.rate, confessions.timestamp,
                 user.username
                 FROM confessions
                 LEFT JOIN confession_rate ON (confessions.confessionid = confession_rate.confessionid)
                 LEFT JOIN user ON (user.userid = confessions.userid)
                 
$clause
                 
$group
                 
$order
                 
$limit 
             "
); 

but now the data i was counting don't show, any suggestions on what i should do?

sabret00the 05-18-2004 08:43 PM

never mind fixed it, sorry for wasting everyones time.


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