关于 mysql中非null判断

本文详细介绍了MySQL中处理NULL值的三种运算符:ISNULL、ISNOTNULL和<>,并提供了实例演示如何在SQL查询中使用这些运算符来查找和过滤NULL值。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

MySQL提供了三大运算符:

IS NULL: 当列的值是NULL,此运算符返回true。
IS NOT NULL: 当列的值不为NULL, 运算符返回true。
<=>: 比较操作符(不同于=运算符),当比较的的两个值为NULL时返回true。

关于 NULL 的条件比较运算是比较特殊的。你不能使用 = NULL 或 != NULL 在列中查找 NULL 值 。
在MySQL中,NULL值与任何其它值的比较(即使是NULL)永远返回false,即 NULL = NULL 返回false 。
MySQL中处理NULL使用IS NULL和IS NOT NULL运算符。
在命令提示符中使用 NULL 值
以下实例中假设数据库 TUTORIALS 中的表 tcount_tbl 含有两列 tutorial_author 和 tutorial_count, tutorial_count 中设置插入NULL值。

实例

尝试以下实例:

root@host# mysql -u root -p password;
Enter password:*
mysql> use TUTORIALS;
Database changed
mysql> create table tcount_tbl
-> (
-> tutorial_author varchar(40) NOT NULL,
-> tutorial_count INT
-> );
Query OK, 0 rows affected (0.05 sec)
mysql> INSERT INTO tcount_tbl
-> (tutorial_author, tutorial_count) values (‘mahran’, 20);
mysql> INSERT INTO tcount_tbl
-> (tutorial_author, tutorial_count) values (‘mahnaz’, NULL);
mysql> INSERT INTO tcount_tbl
-> (tutorial_author, tutorial_count) values (‘Jen’, NULL);
mysql> INSERT INTO tcount_tbl
-> (tutorial_author, tutorial_count) values (‘Gill’, 20);

mysql> SELECT * from tcount_tbl;
+—————–+—————-+
| tutorial_author | tutorial_count |
+—————–+—————-+
| mahran | 20 |
| mahnaz | NULL |
| Jen | NULL |
| Gill | 20 |
+—————–+—————-+
4 rows in set (0.00 sec)

mysql>

以下实例中你可以看到 = 和 != 运算符是不起作用的:

mysql> SELECT * FROM tcount_tbl WHERE tutorial_count = NULL;
Empty set (0.00 sec)
mysql> SELECT * FROM tcount_tbl WHERE tutorial_count != NULL;
Empty set (0.01 sec)

查找数据表中 tutorial_count 列是否为 NULL,必须使用IS NULL和IS NOT NULL,如下实例:

mysql> SELECT * FROM tcount_tbl
-> WHERE tutorial_count IS NULL;
+—————–+—————-+
| tutorial_author | tutorial_count |
+—————–+—————-+
| mahnaz | NULL |
| Jen | NULL |
+—————–+—————-+
2 rows in set (0.00 sec)
mysql> SELECT * from tcount_tbl
-> WHERE tutorial_count IS NOT NULL;
+—————–+—————-+
| tutorial_author | tutorial_count |
+—————–+—————-+
| mahran | 20 |
| Gill | 20 |
+—————–+—————-+
2 rows in set (0.00 sec)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值