开发者

Adding to long complicated query

I ha开发者_开发技巧ve a query of

Select 
cards.card_id, 
  cards.item_name, 
  cards.meta_description,
  cards.description, 
  '' as Weight,
  '' as UPC,
  '' as Part,
  cards.seo_keywords,
  concat('',cards.card_id,'_shadow.png') AS ImageURL,
  lookup_details.value,
  concat('ARTIST - ', card_import.artist) AS Brand,
 replace(lower(concat( 'http://www.test.com/', pcat.seoname,'/',cat.seoname, '/', cards.seoname, '.htm' )),' ','+') AS link,
            concat(pcat.name,' > ',cat.name) as Merchant,
 round(min(card_lookup_values.card_price), 2) AS 'price',
 min(cast(lookup_details.value as signed)) as 'quantity'

FROM
  cards
  left join card_import on card_import.card_id = cards.card_id
  join card_lookup_values on card_lookup_values.card_id = cards.card_id
           INNER JOIN card_categories cc ON cards.card_id = cc.card_id AND cards.card_live = 'y' AND cards.active = 'y' AND cc.active = 'Y'
          INNER JOIN categories cat ON cat.category_id = cc.category_id AND cat.active = 'Y'
          INNER JOIN categories pcat ON cat.parent_category_id = pcat.category_id
INNER JOIN card_lookup_values as card_values ON cards.card_id = card_values.card_id
INNER JOIN lookup_details ON card_lookup_values.lookup_detail_id = lookup_details.lookup_detail_id

WHERE card_lookup_values.lookup_id = 7,lookup_details.lookup_id= 40
GROUP BY
  cards.card_id
ORDER BY
  cards.card_id

I think I have everything set right, but I keep getting an error in Navicat that says I have an error near **

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 'lookup_details.lookup_id= 40
GROUP BY
  cards.card_id
ORDER BY
  cards.card_' at line 28

**

Did I just miss something in this?


You want to AND or OR (whichever is appropriate) your WHERE conditions together.

...
WHERE card_lookup_values.lookup_id = 7 AND lookup_details.lookup_id= 40
...

...
WHERE card_lookup_values.lookup_id = 7 OR lookup_details.lookup_id= 40
...


you hav an extra comma

WHERE card_lookup_values.lookup_id = 7,lookup_details.lookup_id= 40

should be

WHERE card_lookup_values.lookup_id = 7 AND lookup_details.lookup_id= 40


Proper SQL syntax uses the AND keyword in a WHERE clause.

WHERE blahblah = blah AND trala = la


WHERE card_lookup_values.lookup_id = 7,lookup_details.lookup_id= 40

should be

WHERE card_lookup_values.lookup_id = 7 AND lookup_details.lookup_id= 40

don't forget the semicolon at the end too!


change this line

WHERE card_lookup_values.lookup_id = 7,lookup_details.lookup_id= 40

to this

WHERE card_lookup_values.lookup_id = 7 and lookup_details.lookup_id= 40
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜