SQL中如何显示COUNT结果为0的行

如题所述

第1个回答  2016-11-24
select deptno,count(*) from emp group by deptno having count(*)=0;
相似回答