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: 0
 
 
 
mysql> alter table test1_2 drop primary key;
 
Query OK, 0 rows affected (0.02 sec)
 
Records: 0  Duplicates: 0  Warnings: 0
 

posted @   MySQL成长之路  阅读(722)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 分享4款.NET开源、免费、实用的商城系统
· 全程不用写代码,我用AI程序员写了一个飞机大战
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· 白话解读 Dapr 1.15:你的「微服务管家」又秀新绝活了
· 上周热点回顾(2.24-3.2)
点击右上角即可分享
微信分享提示