有个员工表:工号,姓名,入职日期
查出2011年入职人数小于20人的月份和人数列出来。
我被这个月份搞晕了,帮帮我!!
------解决方案--------------------
- SQL code
select convert(nvarchar(7),入职日期,120) 月份,count(工号) 人数from tbwhere datapart(year,入职日期)=2011group by convert(nvarchar(7),入职日期,120)having count(工号)<20
------解决方案--------------------
- SQL code
select convert(varchar(7),入职日期,120) as 月份,count(1) as 人数from 员工表where year(入职日期)=2011group by convert(varchar(7),入职日期,120)having count(1)<20