Mysql入门MySQL查询空字段或非空字段(is null和not null)

Mysql入门MySQL查询空字段或非空字段(is null和not null),第1张

概述介绍《Mysql入门MySQL查询字段或非空字段(is null和not null)》开发教程,希望对您有用。

《MysqL入门MySQL查询空字段或非空字段(is null和not null)》要点:
本文介绍了MysqL入门MySQL查询空字段或非空字段(is null和not null),希望对您有用。如果有疑问,可以联系我们。

MysqL实例现在我们先来把test表中的一条记录的birth字段设置为空.

MysqL> update test set t_birth=null where t_ID=1;
query OK,1 row affected (0.02 sec)
Rows matched: 1  Changed: 1  Warnings: 0

OK,执行成功!
设置一个字段值为空时的语法为:set <字段名>=NulL
说明一下,这里没有大小写的区分,可以是null,也可以是NulL.

下面看看结果:

MysqL> select * from test;
+------+--------+----------------------------------+------------+
| t_ID | t_name | t_password                       | t_birth    |
+------+--------+----------------------------------+------------+
|    1 | name1  | 12345678901234567890123456789012 | NulL       |
|    2 | name2  | 12345678901234567890123456789012 | 2013-01-01 |
+------+--------+----------------------------------+------------+
2 rows in set (0.00 sec)

接下来分别查询一下字段t_birth值为空或不为空的记录:

MysqL> select * from test where t_birth is null;
+------+--------+----------------------------------+---------+
| t_ID | t_name | t_password                       | t_birth |
+------+--------+----------------------------------+---------+
|    1 | name1  | 12345678901234567890123456789012 | NulL    |
+------+--------+----------------------------------+---------+
1 row in set (0.00 sec)

MysqL> select * from test where t_birth is not null;
+------+--------+----------------------------------+------------+
| t_ID | t_name | t_password                       | t_birth    |
+------+--------+----------------------------------+------------+
|    2 | name2  | 12345678901234567890123456789012 | 2013-01-01 |
+------+--------+----------------------------------+------------+
1 row in set (0.00 sec)

说明:
1、查询字段值为空的语法:where <字段名> is null
2、查询字段值不为空的语法:where <字段名> is not null

关于MySQL查询空字段或非空字段(is null和not null),本文就介绍这么多,希望对大家有所帮助,谢谢! 

内存溢出PHP培训学院每天发布《MysqL入门MySQL查询空字段或非空字段(is null和not null)》等实战技能,PHP、MysqL、liNUX、APP、Js,CSS全面培养人才。

总结

以上是内存溢出为你收集整理的Mysql入门MySQL查询空字段或非空字段(is null和not null)全部内容,希望文章能够帮你解决Mysql入门MySQL查询空字段或非空字段(is null和not null)所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/1154863.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-01
下一篇 2022-06-01

发表评论

登录后才能评论

评论列表(0条)

保存