«

mysql约束条件not null怎么使用

时间:2024-3-27 09:43     作者:韩俊     分类: Mysql


这篇文章主要讲解了“mysql约束条件not null怎么使用”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“mysql约束条件not null怎么使用”吧!

说明

1、该约束条件的意思是在向表中插入数据的时候,有约定条件not null的列值不能为空,否则会报错。

2、not null的字段是不能插入mull的,只能插入空值。

实例

mysql> create table t1(id int not null, name varchar(4));
Query OK, 0 rows affected (0.01 sec)
 
mysql> insert into t1 (id, name) values (1, 'python');
Query OK, 1 row affected, 1 warning (0.00 sec)
 
mysql> insert into t1 (id, name) values (1, null);
Query OK, 1 row affected (0.00 sec)
 
mysql> insert into t1 (id, name) values (null, null);
ERROR 1048 (23000): Column 'id' cannot be null

标签: mysql

热门推荐