您好,欢迎访问一九零五行业门户网

mysql如何删除主键?

当一个表中设置了主键之后,如果想要删除主键了要怎么做?下面本篇文章就给大家介绍mysql删除主键的方法,希望对你们有所帮助。
首先我们来看看删除主键的语法:
alter table table_name drop primary key;
在mysql中删除主键要考虑两种情况:
1、主键列不带任何约束,可以直接删除主键的情况
例:
mysql> create table test1_3( -> id int not null primary key, -> name char(10) -> );query ok, 0 rows affected (0.01 sec)
我们可以直接使用drop来删除主键
mysql> alter table test1_3 drop primary key;query ok, 0 rows affected (0.02 sec)records: 0 duplicates: 0 warnings: 0
2、如果是自增(auto_increment属性)的主键
例:
mysql> create table test1_2( -> id int not null auto_increment, -> name char(10),-> primary key(id) -> );query ok, 0 rows affected (0.00 sec)mysql> desc test1_2;+-------+----------+------+-----+---------+----------------+| field | type | null | key | default | extra |+-------+----------+------+-----+---------+----------------+| id | int(11) | no | pri | null | auto_increment || name | char(10) | yes | | null | |+-------+----------+------+-----+---------+----------------+2 rows in set (0.00 sec)
如果直接删除,会报错
mysql> alter table test1_2 drop primary key;
输出:
error 1075 (42000): incorrect table definition; there can be only one auto column and it must be defined as a key #这说明此列是自动增长列,无法直接删除
列的属性还带有auto_increment,那么要先将这个列的自动增长属性去掉,才可以删除主键。
mysql> alter table test1_2 modify id int;query ok, 0 rows affected (0.03 sec)records: 0 duplicates: 0 warnings: 0mysql> alter table test1_2 drop primary key;query ok, 0 rows affected (0.02 sec)records: 0 duplicates: 0 warnings: 0
以上就是mysql如何删除主键?的详细内容。
其它类似信息

推荐信息