View Full Version : whats wrong with this query?
Guy G
12-15-2004, 11:57 AM
$article = $DB_site->query_first("SELECT article.*, articlepost.*, articlecategory.options AS categoryoptions FROM " . TABLE_PREFIX . "article AS article INNER JOIN articlepost AS articlepost ON(articlepost.postid = article.firstpostid) INNER JOIN articlecategory AS articlecategory ON(articlecategory.categoryid = article.categoryid) WHERE article.articleid = $a AND articlepost.type=1");
do u see anything wrong? the error im getting is that there is no such table 'My_Database_Name_Here.articlepost'
im going nuts :ermm:
Paul M
12-15-2004, 12:04 PM
I notice you haven't included the table prefix for the two inner joins.
Guy G
12-15-2004, 12:41 PM
so?
$article = $DB_site->query_first("SELECT article.*, articlepost.*, articlecategory.options AS categoryoptions FROM " . TABLE_PREFIX . "article AS article INNER JOIN " . TABLE_PREFIX . "articlepost AS articlepost ON(articlepost.postid = article.firstpostid) INNER JOIN " . TABLE_PREFIX . "articlecategory AS articlecategory ON(articlecategory.categoryid = article.categoryid) WHERE article.articleid = $a AND articlepost.type=1");
sabret00the
12-15-2004, 01:31 PM
you need to format your code better when asking questions, it's easier to read ;)
$article = $DB_site->query_first("
SELECT article.*, articlepost.*, articlecategory.options AS categoryoptions FROM " . TABLE_PREFIX . "article AS article
INNER JOIN " . TABLE_PREFIX . "articlepost AS articlepost ON(articlepost.postid = article.firstpostid)
INNER JOIN " . TABLE_PREFIX . "articlecategory AS articlecategory ON(articlecategory.categoryid = article.categoryid)
WHERE article.articleid = $a AND articlepost.type=1");i'm check it now
sabret00the
12-15-2004, 01:33 PM
fixed version
$article = $DB_site->query_first("
SELECT article.*, articlepost.*, articlecategory.options AS categoryoptions
FROM article AS article
INNER JOIN articlepost AS articlepost ON(articlepost.postid = article.firstpostid)
INNER JOIN articlecategory AS articlecategory ON(articlecategory.categoryid = article.categoryid)
WHERE article.articleid = $a AND articlepost.type=1");
Guy G
12-15-2004, 02:11 PM
thx for the replies... all worked :D
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.