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好些
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中查询字段为null或者不为null
SQL 查询字段为值不为空
举报文章
请选择举报类型
补充说明
0/200
上传截图
格式支持JPEG/PNG/JPG,图片不超过1.9M