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