If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > MySQL > MySql select with three tables problem

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 09-17-04, 13:37
agairob agairob is offline
Registered User
 
Join Date: Sep 2004
Posts: 3
MySql select with three tables problem

I have a tricky query, and I can’t go around it. Please give me a hint on how to do this correctly. I want to select count everything from the following tables.
Here are my tables:

Categories:
Categoryid, category, description, orders, avail, image

Products:
Productid, product, model, brand, weight

Product_categories:
Prod_cat_id, productid, categoryid

Now here is the query
“select count(*) from product_categories, categories, products where product_categories.categoryid=categories.categoryi d and product_categories.productid=products.productid and categories.category like $some_category";

What am I doing wrong, I get INVALID SQL: 1064 error
Any help will be appreciated
Reply With Quote
  #2 (permalink)  
Old 09-17-04, 13:48
RBARAER RBARAER is offline
Registered User
 
Join Date: Aug 2004
Location: France
Posts: 754
Hello,

It may not be that, but it seems you have a space that should not be in your where clause :

product_categories.categoryid=categories.categoryi d

Regards,

RBARAER
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On