below you can see my working query:

 $result=dbquery("SELECT p.product_id, p.product_title, p.product_image1_t1, cr.*, c.campaign_allow_mobilepayment,c.campaign_end_date 
    FROM ".DB_MYAPP_PRODUCTS." 
p INNER JOIN ".DB_MYAPP_CAMPAIGN_RELATIONS." cr ON cr.item_id=p.product_id 
LEFT JOIN ".DB_MYAPP_CAMPAIGNS." c ON cr.campaign_id=c.campaign_id 
LEFT JOIN ".DB_MYAPP_PRODUCT_CATS." pc ON pc.product_cat_id=p.product_cat_id 
LEFT JOIN ".DB_MYAPP_BRANDS." b ON b.brand_id=pc.product_cat_brand_id 
WHERE 
AND cr.item_type='2' 
AND c.campaign_start_date<=".time()." 
AND c.campaign_end_date>'".time()."'".($brand_id!=0?" AND b.brand_id='".$brand_id."'":"").($cat_id!=0?" 
AND p.product_cat_id='".$cat_id."'":"").($color_id!=0?" 
AND p.product_color='".$color_id."'":"")." 
ORDER BY 
    item_order DESC LIMIT ".$rowstart.",".$limit);

I need to add some OR statlements, but didn't work...

    $result=dbquery("SELECT p.product_id, p.product_title, p.product_image1_t1, cr.*, c.campaign_allow_mobilepayment,c.campaign_end_date 
    FROM ".DB_MYAPP_PRODUCTS." p 
INNER JOIN ".DB_MYAPP_CAMPAIGN_RELATIONS." cr ON cr.item_id=p.product_id 
LEFT JOIN ".DB_MYAPP_CAMPAIGNS." c ON cr.campaign_id=c.campaign_id 
LEFT JOIN ".DB_MYAPP_PRODUCT_CATS." pc ON pc.product_cat_id=p.product_cat_id 
LEFT JOIN ".DB_MYAPP_BRANDS." b ON b.brand_id=pc.product_cat_brand_id 
WHERE 
   product_select1=".$option." 
OR product_select2=".$option." 
OR product_select3=".$option." 
OR product_select4=".$option." 
OR product_select5=".$option." 
OR product_select6=".$option." 
OR product_select7=".$option." 
OR product_select8=".$option." 
OR product_select9=".$option." 
OR product_select10=".$option." 
AND cr.item_type='2' 
AND c.campaign_start_date<=".time()." 
AND c.campaign_end_date>'".time()."'".($brand_id!=0?" AND b.brand_id='".$brand_id."'":"").($cat_id!=0?" 
AND p.product_cat_id='".$cat_id."'":"").($color_id!=0?" 
AND p.product_color='".$color_id."'":"")." 
ORDER BY 
    item_order DESC LIMIT ".$rowstart.",".$limit);

the output:

You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'M' in 'where clause'')' at line 1

M is $option

link|improve this question

Could you post an example query after it has been processed with PHP? – bfavaretto Oct 4 '11 at 19:24
2  
Test it on the mysql command line first with a very simple example; make sure you understand the precedence of OR and AND, and use parentheses if unsure. – Kerrek SB Oct 4 '11 at 19:24
3  
Put a little effort into it, man. WHAT didn't work? What were you expecting and what happened? Also, format your code if you want helping humans to read it for you. – Radu Oct 4 '11 at 19:24
Please read the FAQ how to ask a question. – hakre Oct 4 '11 at 19:25
I've updated the question with output... – dr.linux Oct 4 '11 at 19:29
show 5 more comments
feedback

closed as not a real question by hakre, Radu, KingCrunch, alexn, Soner Gönül Oct 4 '11 at 19:38

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

1 Answer

use parenthesis to group the AND & OR conditions

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.