how to add unique constraint to a fild after teh table has been created in mysql code example
Example: how to add unique constraint in mysql table
ALTER TABLE mytbl ADD UNIQUE (columnName);
ALTER TABLE mytbl ADD UNIQUE (columnName);