I want to filter the column called TPIN so that all duplicates are eliminated , how do I do it?
Code:
SELECT tblCustomers.CustomerID, tblCustomers.Company, tblCustomers.CustStatus, tblCustomers.TPIN
FROM tblCustomers
WHERE (((tblCustomers.Company) Is Not Null) AND ((tblCustomers.CustStatus) Is Null Or (tblCustomers.CustStatus)<>"2"))
ORDER BY tblCustomers.Company;