本文介绍了如何在sql中获得上周的最后一天?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何在sql中获取上周的最后日期?我的意思是使用查询的最后一个星期天日期?
How to get last date of the lastweek in sql? I mean last sunday date using query?
推荐答案
无论实际的 DATEFIRST 设置如何,最后一个星期日都可以这样找到:
Regardless of the actual DATEFIRST setting, the last Sunday could be found like this:
SELECT DATEADD(day,
-1 - (DATEPART(weekday, GETDATE()) + @@DATEFIRST - 2) % 7,
GETDATE()
) AS LastSunday
将 GETDATE()
替换为参数 @date
以获取特定日期之前的最后一个星期日.
Replace GETDATE()
with a parameter @date
to get the last Sunday before a particular date.
这篇关于如何在sql中获得上周的最后一天?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!