mysql alter table remove unique key code example
Example 1: how to remove unique key constraint in mysql
DROP INDEX index_name ON tbl_name
Example 2: how to remove unique key in mysql
ALTER TABLE tbl_quiz_attempt_master
DROP INDEX `PRIMARY`;
DROP INDEX index_name ON tbl_name
ALTER TABLE tbl_quiz_attempt_master
DROP INDEX `PRIMARY`;