Hello, I have a zipcode table. I want to look through this table and find every zipcode that is in it twice. The table does have a primary key set on it(zipcode_rid). How would I do this?
Also, I am aware that there are official multi-state/city/county zipcodes. That is what I'm wishing to find.
My table structure is like so:
- zipcode_rid (int, unique, primary key)
- zipcode (int)
- city (varchar(50))
- state (varchar(50))
- county (varchar(50))
The database software I am using is Sql Server 2008 Express