S
SAC
I'd like to see all customers but only transactions since 5/1/10.
I have a query like this, but I'm getting a record for each Customer.
ARINH is a table for the transactions.
SELECT Customer.AcctNo, ARINH.Date
FROM ARINH RIGHT JOIN Customer ON ARINH.CustId = Customer.Key
WHERE (((ARINH.Date)>=#5/1/2010#));
How can I change it so some results in the date column would be null. They
should be.
Thanks for your help.
I have a query like this, but I'm getting a record for each Customer.
ARINH is a table for the transactions.
SELECT Customer.AcctNo, ARINH.Date
FROM ARINH RIGHT JOIN Customer ON ARINH.CustId = Customer.Key
WHERE (((ARINH.Date)>=#5/1/2010#));
How can I change it so some results in the date column would be null. They
should be.
Thanks for your help.