PostgreSQL统计每天的记录数量,没有记录就为0或返回null

 

1. 需求统计下面事件类型的数量,没有此类型没有数据的返回为null,前端显示为0,请写出PostgreSQL的sql

PostgreSQL统计每天的记录数量,没有记录就为0或返回null

 

SQL语句是:

    select t.event_code as eventCode,t.event_name as eventName,s.eventNum from event_type t LEFT JOIN 
        (select s.parent_code
        as eventCode,count(id) as eventNum
        from article s        
            where 1=1 
        group by s.parent_code order by eventNum desc) s on s.eventCode=t.event_code where t.parent_code=0

显示结果:

PostgreSQL统计每天的记录数量,没有记录就为0或返回null

 

解析原理:

在实际开发中我们经常遇见统计每天的记录数量,没有记录就为0或返回null。

以主要查询的显示的表为主表(LEFT JOIN 左边的表),根据左边的表的类型查询统计对应右表的,显示就结果

 

PostgreSQL统计每天的记录数量,没有记录就为0或返回null

上一篇:常见环境搭建:MySQL5.7在Windows本地多实例安装


下一篇:ms-onlinetest-question02