how to apply unique to the existing row in mysql code example
Example: mysql alter table set column unique
ALTER TABLE contacts
ADD CONSTRAINT contacts_unique UNIQUE (reference_number);
ALTER TABLE contacts
ADD CONSTRAINT contacts_unique UNIQUE (reference_number);