well just to find the "dupes" you can use something like this:select replace(citizen_name, '"','') as [Replaced] ,min(citizen_name) as [minName] ,max(citizen_name) as [maxName] ,count(*) as [dupeCount]from citizen_one group by replace(citizen_name, '"','')having count(*) > 1
Just out of curiosity, what happens if two different citizens have the same name? There have to be a bunch of people named John Smith and Mohamed Ali out there.Be One with the OptimizerTG