delete primary key code example
Example 1: remove primary key from a table
alter table Player DROP PRIMARY KEY;
Example 2: remove primary key from table
ALTER TABLE Persons
DROP PRIMARY KEY;
alter table Player DROP PRIMARY KEY;
ALTER TABLE Persons
DROP PRIMARY KEY;