mysql查找字段空不为空的方法总结
Posted clubs
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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好些
以上是关于mysql查找字段空不为空的方法总结的主要内容,如果未能解决你的问题,请参考以下文章