mysql怎么查找字段不为空的记录
具体方法:
(推荐教程:mysql数据库学习教程)
1、不为空
Select * From table_name Where id<>'' Select * From table_name Where id!=''
2、为空
Select * From table_name Where id='' Select * From table_name Where ISNULL(id)
具体情况具体分析,如果字段是char和varchar型用 id=''可以;如果是int型用 ISNULL好些。
来源:PY学习网:原文地址:https://www.py.cn/article.html