トランザクション テーブルとの内部結合を使用すると、アカウント番号が重複します。重複したアカウント番号が表示されないように制限するにはどうすればよいですか。
SELECT A01_AccountMaster.AccountNumber, A01_AccountMaster.FamilyMemberType,
A01_AccountMaster.AccountType, A01_AccountMaster.FamilyId,
A01_AccountMaster.Title, A01_AccountMaster.FirstName,
A01_AccountMaster.MiddleName, A01_AccountMaster.LastName,
A01_AccountMaster.Suffix, A01_AccountMaster.OrganizationName,
A01_AccountMaster.Status,
T01_TransactionMaster.Date,
T01_TransactionMaster.AccountNumber AS T01_Accountnumber
FROM A01_AccountMaster
INNER JOIN T01_TransactionMaster
ON A01_AccountMaster.AccountNumber = T01_TransactionMaster.AccountNumber
WHERE (A01_AccountMaster.Title = 'The')
AND (T01_TransactionMaster.Date between '01/01/2010' and '09/12/2012')
ORDER BY AccountNumber;