当前位置: 代码迷 >> Sql Server >> 关于年月日的有关问题
  详细解决方案

关于年月日的有关问题

热度:97   发布时间:2016-04-27 14:10:53.0
关于年月日的问题
有个员工表:工号,姓名,入职日期
查出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
  相关解决方案