sql 查询字段是否为空及统计满足条件语句的总个数

sql 查询某字段为空
select * from 表名 where 字段名 is null

sql 查询某字段不为空
select * from 表名 where 字段名 is not null

使用and或者or组成同时满足多个条件的语句

sql查询字段1为空且字段2不为空的数据
select * from 表名 where 字段名1 is null and 字段名2 is not null

sql查询字段1为空或者字段2为空的数据
select * from 表名 where 字段名1 is null or 字段2 is null

统计表中总共数据的个数
select count(*) from 表名

统计满足条件的记录的个数
select count(*) from 表名 where 条件

常用的聚合函数
count() 为计数,同理的还有sum()求和,avg()平均数,max()最大值,min()最小值

使用group by ,可以参考 http://www.cnblogs.com/jingfengling/p/5962182.html

你可能感兴趣的:(工作总结)