百分百源码网-让建站变得如此简单! 登录 注册 签到领金币!

主页 | 如何升级VIP | TAG标签

当前位置: 主页>网站教程>数据库> mysql怎样删除主键?
分享文章到:

mysql怎样删除主键?

发布时间:08/01 来源:未知 浏览: 关键词:
mysql删除主键有两种状况:要是主键不带自增属性,则可以直接运用drop来删除主键;要是主键带自增属性,则要先将这个列的主动增长属性去除,才可以删除主键。 当一个表中设定了主键之后,要是想要删除主键了要怎么做?下面本篇文章就给大家介绍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

以上就是mysql怎样删除主键?的细致内容,更多请关注 百分百源码网 其它相干文章!

打赏

打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,你说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

百分百源码网 建议打赏1~10元,土豪随意,感谢您的阅读!

共有152人阅读,期待你的评论!发表评论
昵称: 网址: 验证码: 点击我更换图片
最新评论

本文标签

广告赞助

能出一分力是一分吧!

订阅获得更多模板

本文标签

广告赞助

订阅获得更多模板