mysql如何判断字段是否为空

anonymity
发布: 2020-09-17 09:21:51
原创
43690 人浏览过

mysql判断字段是否为空的方法:可以利用isnull()函数来进行判断,具体代码为【select * from users where email = 'xxxx' and isnull(deletedAt)】。

mysql如何判断字段是否为空

MySQL是一个关系型数据库管理系统,由瑞典MySQL AB 公司开发,目前属于 Oracle 旗下产品。MySQL 是最流行的关系型数据库管理系统之一,在 WEB 应用方面,MySQL是最好的 RDBMS (Relational Database Management System,关系数据库管理系统) 应用软件。

(推荐教程:mysql视频教程

当我们需要知道mysql中的某个字段是否为空?怎么实现呢?

这里提供了5种方法进行查询:

isnull()

select * from users where email = 'xxxx' and isnull(deletedAt)
登录后复制

is null

select * from users where email = 'xxxx' and deletedAt is null
登录后复制

is not null

select * from users where email = 'xxxx' and deletedAt is not null
登录后复制

!isnull()

select * from users where email = 'xxxx' and !isnull(deletedAt) 
select * from users where email = 'xxxx' and not isnull(deletedAt)
登录后复制

isfull

当查询条件为 null,用指定字符替代

select name,  isfull(gender,'未知') as gender  from users where email = 'xxxx'
登录后复制

以上是mysql如何判断字段是否为空的详细内容。更多信息请关注PHP中文网其他相关文章!

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板