Answers for "mysql alter table drop unique key"

SQL
4

how to remove unique key constraint in mysql

ALTER TABLE tbl_name DROP INDEX index_name
Posted by: Guest on December-04-2019
1

how to remove unique key in mysql

ALTER TABLE tbl_quiz_attempt_master
  DROP INDEX `PRIMARY`;
Posted by: Guest on May-27-2020

Code answers related to "mysql alter table drop unique key"

Code answers related to "SQL"

Browse Popular Code Answers by Language