Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
SQL - find records from one table which don’t exist in another

I have the following (simplified) schema in MySQL:

simplified schema

An arrow indicates a one (non-arrow side) to many (arrow side) relationship.

I want to determine, for which delivery_zone_weeks, does a customer not have a weekly_order.

share|improve this question
1  
Can you include your DB schema? – Sable Foste Jan 1 at 0:08
Please also include few sample result set rows from the query you're hoping to create. – Ollie Jones Jan 1 at 0:39
Also see stackoverflow.com/questions/544094/…. Both these are listed in the Related sidebar, how'd you miss them in your search? – Barmar Jan 1 at 0:47
Schema and sample data: pastebin.com/JmxWzM8N – Toxygene Jan 1 at 3:23

marked as duplicate by Barmar, shiplu.mokadd.im, alexisdm, Ram kiran, the Tin Man Jan 1 at 6:54

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

It is difficult to understand fully without structures, sample data and expected result, but seems to be risking it a bit you need

SELECT * FROM DELIVERY_ZONE_WEEK WHERE ID_DELIVERY_ZONE_WEEK NOT IN
(SELECT WO.ID_DELIVERY_ZONE_WEEK FROM CUSTOMER C
JOIN SHIPPING_ADDRESS SA
    ON C.ID_CUSTOMER = SA.ID_CUSTOMER
JOIN WEEKLY_ORDER WO
    ON SA.ID_SHIPPING = WO.ID_SHIPPING
WHERE C.ID_CUSTOMER = @ID_CUSTOMER)
share|improve this answer

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