To drop a UNIQUE
constraint, use the following SQL:
MySQL:
ALTER TABLE Persons
DROP INDEX UC_Person;
DROP INDEX UC_Person;
SQL Server / Oracle / MS Access:
ALTER TABLE Persons
DROP CONSTRAINT UC_Person;
DROP CONSTRAINT UC_Person;
Practice Excercise Practice now