数据查询时遇到sql语句编写错误,导致过滤数据失败
字段里面有用户和活跃状态,不能直接count(distinct 状态)作为活跃用户
应该写成
count(distinct case when 状态='活跃' then 用户 else null end) as 活跃用户