sql中怎么查询其中的值不为空的数据
2017-01-15
展开全部
sql中怎么查询其中的值不为空的数据
空值数据: select count(*) from YourTable where YourColumnName is null
非空值数据: select count(*) from YourTable where YourColumnName is not null
sqlserver Oracle Access 都通用的!
空值数据: select count(*) from YourTable where YourColumnName is null
非空值数据: select count(*) from YourTable where YourColumnName is not null
sqlserver Oracle Access 都通用的!
展开全部
非空值数据: select count(*) from YourTable where YourColumnName is not null。
空值数据: select count(*) from YourTable where YourColumnName is null或者字段 is null 或者 isnull(字段,'')='' 一般用后者 可以把 null 和 '' 都能查。
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
where 属性名 <>‘null’
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询