mysql查找字段空、不为空的方法总结
时间:2019-06-19 12:51:47
收藏:0
阅读:110
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好些
原文:https://www.cnblogs.com/clubs/p/11050429.html
评论(0)