Hi all,
I have a parcel table containg pin numbers. I need this field (pin) to be the primary key. I can't because it has duplicate values. Is there a way that I can search for repeating values(pin's) in Access?
Try a query like this:
SELECT Table1.PinNbr, Count(Table1.PinNbr) AS CountOfPinNbr
FROM Table1
GROUP BY Table1.PinNbr
HAVING (((Count(Table1.PinNbr))>1));
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.