Hi All,

Can anyone help me get this query working in MySQL, this was created using
Access, but it doesn't port well for MySQL syntax:

SELECT b.id, p.part_code, p.product_type, p.description, po1.options,
b.price, b.quantity, b.price*b.quantity AS total
FROM (products AS p LEFT JOIN product_options AS po ON p.prod_id =
po.prod_id) RIGHT JOIN (product_options AS po1 RIGHT JOIN (basket_header AS
bh INNER JOIN basket AS b ON bh.basket_id = b.basket_id) ON po1.po_id =
b.op_id) ON p.prod_id = b.prod_id
GROUP BY b.id, p.part_code, p.product_type, p.description, po1.options,
b.price, b.quantity, b.price*b.quantity, bh.basket_id, p.options
HAVING (((bh.basket_id)=4));

Here is the error message MySQL reports:

You have an error in your SQL syntax near '(product_options AS po1 RIGHT
JOIN (basket_header AS bh INNER JOIN basket AS b O' at line 1

Any ideas to the correct syntax?

Thanks,

Kevin


---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to