sql之取当前月最新数据

Posted 张追逐

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql之取当前月最新数据相关的知识,希望对你有一定的参考价值。

select DISTINCT a.[DeptName],[Num],a.DeptId,[EatingDate] from [dbo].[ISO_EmployeeEatingReport]  a
     where a.Id in(select max(c.MainId)  from [OA_EatingDetial] c
     inner join [ISO_EmployeeEatingReport] d on d.Id=c.MainId
where convert(char(7),c.DetialDate,20)>=convert(char(7),dateadd(MONTH,-1,GETDATE()),20) AND convert(char(7),c.DetialDate,20)<=convert(char(7),GETDATE(),20) 
AND  forMeal=开餐 and IsFinished=1 AND c.TypeId=1 
group by c.DeptId)

以部门为分组,进行月份的最大值限制

以上是关于sql之取当前月最新数据的主要内容,如果未能解决你的问题,请参考以下文章

sql 怎么查询最新一个月的数据

洛谷——P4018 Roy&October之取石子

洛谷 Roy&October之取石子

P4018 Roy&October之取石子

sql 查询每天一条数据

如何在SQL中获取当前日期最近六个月的前一个月数据