We can remove PRIMARY KEY constraints from columns of existing tables by using DROP keyword and ALTER TABLE statement.
mysql> DESCRIBE Player; +-------+-------------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +-------+-------------+------+-----+---------+-------+ | ID | int(11) | NO | PRI | NULL | | | Name | varchar(20) | YES | | NULL | | +-------+-------------+------+-----+---------+-------+ 2 rows in set (0.04 sec)
Now, if we want to delete PRIMARY KEY constraint, then we can use ALTER TABLE statement as shown below-
mysql> alter table Player DROP PRIMARY KEY; Query OK, 0 rows affected (0.31 sec) Records: 0 Duplicates: 0 Warnings: 0 mysql> DESCRIBE Player; +-------+-------------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +-------+-------------+------+-----+---------+-------+ | ID | int(11) | NO | | NULL | | | Name | varchar(20) | YES | | NULL | | +-------+-------------+------+-----+---------+-------+ 2 rows in set (0.04 sec)
The above result set shows that the PRIMARY KEY constraint on column "ID" has been deleted.
The above is the detailed content of How can we remove PRIMARY KEY constraint from column of existing MySQL table?. For more information, please follow other related articles on the PHP Chinese website!