Note that there are some explanatory texts on larger screens.

plurals
  1. POAdding to long complicated query
    primarykey
    data
    text
    <p>I have a query of </p> <pre><code>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,' &gt; ',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 </code></pre> <p>I think I have everything set right, but I keep getting an error in Navicat that says I have an error near **</p> <pre><code>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 </code></pre> <p>**</p> <p>Did I just miss something in this?</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload