阿里云-云小站(无限量代金券发放中)
【腾讯云】云服务器、云数据库、COS、CDN、短信等热卖云产品特惠抢购

MySQL 非空约束位置不同对自增列造成的影响

176次阅读
没有评论

共计 1454 个字符,预计需要花费 4 分钟才能阅读完成。

MySQL 版本
select version();
+————+
| version() |
+————+
| 5.7.21-log |
+————+
1 row in set (0.00 sec)


非空约束为 null 并在自增列属性前

  • 即使自增列的非空约束定义可以为 null,但实际自增列为 not null

create table test_auto_incre(id int null auto_increment,id2 int default null ,key idx_id(id));

show create table test_auto_incre;

CREATE TABLE test_auto_incre (
id int(11) NOT NULL AUTO_INCREMENT,
id2 int(11) DEFAULT NULL,
KEY idx_id (id)
) ENGINE=InnoDB DEFAULT CHARSET=utf8

insert into test_auto_incre(id2) values(12),(2312);
select * from test_auto_incre;
+—-+——+
| id | id2 |
+—-+——+
| 1 | 12 |
| 2 | 2312 |
+—-+——+
2 rows in set (0.00 sec)


非空约束为 null 并在自增列属性后

  • 自增列定义可以为 null,实际自增列也可以为 null;自增列失去作用!

create table test_auto_incre2(id int auto_increment null,id2 int null,key idx_id(id));
Query OK, 0 rows affected (0.02 sec)

非空约束在自增列属性后,不是 MySQL 的标准建表语句,但建该表没有报错和警告
show create table test_auto_incre2;

CREATE TABLE test_auto_incre2 (
id int(11) AUTO_INCREMENT,
id2 int(11) DEFAULT NULL,
KEY idx_id (id)
) ENGINE=InnoDB;

插入数据

insert into test_auto_incre2(id2) values(12),(2312);
select * from test_auto_incre2;
+——+——+
| id | id2 |
+——+——+
| NULL | 12 |
| NULL | 2312 |
+——+——+
2 rows in set (0.00 sec)


非空约束为 not null 并在自增列属性后

create table test_auto_incre2(id int auto_increment not null,id2 int null,key idx_id(id));

show create table test_auto_incre2;

CREATE TABLE test_auto_incre2 (
id int(11) NOT NULL AUTO_INCREMENT,
id2 int(11) DEFAULT NULL,
KEY idx_id (id)
) ENGINE=InnoDB A

插入数据

insert into test_auto_incre2(id2) values(12),(2312);
select * from test_auto_incre2;
+—-+——+
| id | id2 |
+—-+——+
| 1 | 12 |
| 2 | 2312 |
+—-+——+

MySQL 标准建表语法

MySQL 非空约束位置不同对自增列造成的影响

正文完
星哥玩云-微信公众号
post-qrcode
 0
星锅
版权声明:本站原创文章,由 星锅 于2022-01-22发表,共计1454字。
转载说明:除特殊说明外本站文章皆由CC-4.0协议发布,转载请注明出处。
【腾讯云】推广者专属福利,新客户无门槛领取总价值高达2860元代金券,每种代金券限量500张,先到先得。
阿里云-最新活动爆款每日限量供应
评论(没有评论)
验证码
【腾讯云】云服务器、云数据库、COS、CDN、短信等云产品特惠热卖中