select 部门,case when (count (case when 项目审核 ='通过' then 1 else 0 end) = count (1) ) then 1 else -0 end as 状态 ) from 表 group by 部门
这样就先列出每个部门是否全员审核通过。 1 代表是,0 代表不是