drop a primary key in sql code example
Example 1: remove primary key from a table
alter table Player DROP PRIMARY KEY;
Example 2: primary key in sql
PRIMARY KEY
-- unique identifier for the entire row of record in a table
-- can not be null and must be unique