このクエリは、顧客IDのテーブルを生成します。
SELECT Transactions.customerId
FROM Transactions
WHERE Transactions.purchaseDate <#9/1/2012#
GROUP BY Transactions.customerId
HAVING Sum(Transactions.amountPaid)<>0;
このクエリは、トランザクションのテーブルを生成します。
SELECT Customers.firstName, Customers.lastName, Transactions.transactionId, Transactions.product, Transactions.purchaseDate, Transactions.amountPaid, Customers.customerId
FROM Customers INNER JOIN Transactions ON Customers.customerId = Transactions.customerId
WHERE (((Transactions.refundTransaction)=False));
最初のクエリで生成されたユーザーのみからすべてのトランザクション(2番目のクエリ)を選択したいと思います。