Jump to content

Complex query collecting too many values


luminous

Recommended Posts

I'm trying to grab a set of infomation which is unique to an Order ID. Currently, for this query it should return 4 results (4 products) but it's bringing back 66  :wtf: I think this is because it'd returning duplicate values. Here's the Query I'm working with at the moment:

 


SELECT  
O.`id_order`,

	O.`date_add`,
	O.`total_paid`,
	O.`total_shipping`,
	O.`delivery_date`,
	O.`invoice_date`,
	C.`id_gender`,
	AD.`firstname`,
	AD.`lastname`,
	AD.`company`,
	C.`email`,
	AD.`phone_mobile`,
	AD.`phone`,
	CONCAT(AD.`address1`, " ", AD.`address2`, " ", AD.`postcode`, " ", AD.`city`),
	CONCAT(AI.`address1`, " ", AI.`address2`, " ", AI.`postcode`, " ", AI.`city`),
	OD.`product_name`,
	OD.`product_quantity`,
	OD.`product_weight`,
	OD.`product_price`,
	M.`name`
                FROM ps_orders AS O,
                ps_customer AS C, 
                ps_order_detail AS OD, 
                ps_manufacturer AS M,
                ps_address AS AD, 
                ps_address AS AI 
               WHERE 
               O.id_order = 28,
               AI.id_address=id_address_invoice AND
               AD.id_address=id_address_delivery AND 
               C.id_customer=O.id_customer 
              

 

The 28 in this example will be inserted dynamically but for testing I'm using the number 28. If anyone can help me or needs any more info to help me, then please let me know!

 

Thanks!

Link to comment
Share on other sites


SELECT  
O.`id_order`,

	O.`date_add`,
	O.`total_paid`,
	O.`total_shipping`,
	O.`delivery_date`,
	O.`invoice_date`,
	C.`id_gender`,
	AD.`firstname`,
	AD.`lastname`,
	AD.`company`,
	C.`email`,
	AD.`phone_mobile`,
	AD.`phone`,
	CONCAT(AD.`address1`, " ", AD.`address2`, " ", AD.`postcode`, " ", AD.`city`),
	CONCAT(AI.`address1`, " ", AI.`address2`, " ", AI.`postcode`, " ", AI.`city`),
	OD.`product_name`,
	OD.`product_quantity`,
	OD.`product_weight`,
	OD.`product_price`,
	M.`name`
                FROM ps_orders AS O,
                ps_customer AS C ON (O.id_customer = C.id_customer), 
                ps_order_detail AS OD, 
                ps_manufacturer AS M,
                ps_address AS AD ON (AD.id_address = O.id_address_delivery), 
                ps_address AS AI ON (AI.id_address = O.id_address_invoice) 
               WHERE 
               O.id_order = 28,

Link to comment
Share on other sites

When i try your example i get:

 


#1064 - 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 'ON (O.id_customer = C.id_customer), ps_order_detail AS OD, ' at line 24

Link to comment
Share on other sites

take the very last comma out of the query.


SELECT  
O.`id_order`,

	O.`date_add`,
	O.`total_paid`,
	O.`total_shipping`,
	O.`delivery_date`,
	O.`invoice_date`,
	C.`id_gender`,
	AD.`firstname`,
	AD.`lastname`,
	AD.`company`,
	C.`email`,
	AD.`phone_mobile`,
	AD.`phone`,
	CONCAT(AD.`address1`, " ", AD.`address2`, " ", AD.`postcode`, " ", AD.`city`),
	CONCAT(AI.`address1`, " ", AI.`address2`, " ", AI.`postcode`, " ", AI.`city`),
	OD.`product_name`,
	OD.`product_quantity`,
	OD.`product_weight`,
	OD.`product_price`,
	M.`name`
                FROM ps_orders AS O,
                ps_customer AS C ON (O.id_customer = C.id_customer), 
                ps_order_detail AS OD, 
                ps_manufacturer AS M,
                ps_address AS AD ON (AD.id_address = O.id_address_delivery), 
                ps_address AS AI ON (AI.id_address = O.id_address_invoice) 
               WHERE 
               O.id_order = 28

 

It ended with a comma.

Link to comment
Share on other sites

hey andrew,

 

Sorry for this and I do appreicate you time but after trying the query again with the removed comma I've noticed it's saying the error is at the:

 

'ON (O.id_customer = C.id_customer), ps_order_detail AS OD, 

 

I know this kind of query qould require and JOINS of some kind but I am inexperienced with MYSQL, do you have anywhere I could learn about these quickly or have anymore ideas how to get this working?

 

Thanks!

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.