ifnull这个函数为什么没用效果哈?

select

*

from

(

SELECT DISTINCT

RepMonth as RepMonth

FROM

obj_date 

WHERE

RepDate <= NOW() 

AND DATE_FORMAT( RepDate, '%Y' ) = DATE_FORMAT(NOW(),'%Y')

) od

LEFT JOIN

(

SELECT

    IFNULL(count(DISTINCT project_id)/

(select count(id) as total from system_project 

where org_id = (select id from sys_depart where depart_name = '苏南分公司')

and depart_id in (select id from sys_depart where depart_name = '历史研究院' )),0.01) as '填报率',

CONCAT(MONTH(create_time),'月') as '月份'

FROM

aq_identificationlist 

WHERE

   branch_office = '苏南分公司'

and date_format( create_time, '%Y' )= '2022'

and bpm_status != '1'

and bpm_status != '4'

and project_id in (select id from system_project where depart_id in (select id from sys_depart  where depart_name = '历史研究院' ))

GROUP BY CONCAT(MONTH(create_time),'月')

) bo on od.RepMonth = bo.月份

image.png

SQL yikefu 发布于 2022-9-19 10:32
1min目标场景问卷 立即参与
回答问题
悬赏:0 F币 + 添加悬赏
提示:增加悬赏、完善问题、追问等操作,可使您的问题被置顶,并向所有关注者发送通知
共2回答
最佳回答
0
lxy2Lv6中级互助
发布于2022-9-19 10:38(编辑于 2022-9-19 10:39)

不是ifnull有问题,是关联数据没关联对image.png

最佳回答
0
我在等风也等你Lv6初级互助
发布于2022-9-19 10:33

什么数据库,有的数据库不是ifnull 是isnull,

  • 3关注人数
  • 355浏览人数
  • 最后回答于:2022-9-19 10:39
    请选择关闭问题的原因
    确定 取消
    返回顶部