remove unique key from a table code example
Example 1: how to remove unique key in mysql
ALTER TABLE mytable DROP INDEX key_Name;
Example 2: how to remove unique key constraint in mysql
DROP INDEX index_name ON tbl_name
Example 3: remove unique key from a table
example: alter table DropIndex drop index BookId ;