Best method would be to create a new table:
Addressbook_temp
run a script thus:
insert into Addressbook_temp
select ID,FirstName,LastName,City,State,Zip from addressbook
group by ID,FirstName,LastName,City,State,Zip
delete the old table addressbook and then rename Addressbook_temp to...