Answers for "how to change unique key in mysql"

SQL
1

how to remove unique key in mysql

ALTER TABLE mytable DROP INDEX key_Name;
Posted by: Guest on June-13-2020
0

mysql create unique key via alter table

ALTER TABLE Persons

ADD CONSTRAINT UC_Person UNIQUE (ID,LastName);
Posted by: Guest on May-31-2021

Code answers related to "how to change unique key in mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language