Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have two tables: Customers and Addresses. There can only be 1 customer record, but a customer may have multiple addresses. Each address has true/false field called "active".

I'm trying to design a query that selects any customers that don't have an active address. So customers with address records that are all marked "active = false", or have no address records at all.

I'm working in Access for this, so the SQL needs to be MS friendly. However I am interested to know the general SQL technique to do this kind of selection.

Edit: Table Structure

Customers

CustomerID, CustomerName, CustomerDoB

Addresses

AddressID, AddressName, AddressPostcode, CustomerID, Active

share|improve this question
2  
can you post your table and related field names – polin Nov 29 '12 at 12:09
I think that NOT EXISTS can work for you, but without the tables structure I can't make an example. – Philipi Willemann Nov 29 '12 at 12:15

3 Answers

up vote 2 down vote accepted

This should point you in the right direction, without the table schema I've made some assumptions:

SELECT * FROM Customers
WHERE ID Not In (SELECT CustomerID FROM Addresses WHERE Active = -1)

This assumes an ID in the customer table and a CustomerID in the addresses table

share|improve this answer
select customer_id
from customers c
where not exists (select 1
                  from   addresses a
                  where  a.customer_id = c.customer_id
                  and    a.active = true
                 )
share|improve this answer

This works in Ms-Access:

SELECT Customers.*
FROM Customers LEFT JOIN Addresses ON (Customers.customer_id = Addresses.customer_id AND Addresses.Active = TRUE)
WHERE Addresses.customer_id is null

using a left join I'm selecting all Customers and I'm trying to join each customer with an active address in the Addresses table. If the join doesn't succeed, Addresses.customer_id will be null.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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