SQL Server 2008-如果日期是周末,则增加到下周一

发布于 2024-10-18 09:18:50 字数 190 浏览 1 评论 0原文

在 SQL Server 中,我根据某些业务规则计算日期。如果日期是周末,我需要将其移至下周​​一......所以基本上:

if(date == saturday)
{
 add 2 days
}
if(date == sunday)
{
  add 2 day
}

完成此任务的最简单方法是什么?

In SQL Server I am calculating a date based on certain business rules. If the date falls on a weekend I need to move it up to the next monday...so basically:

if(date == saturday)
{
 add 2 days
}
if(date == sunday)
{
  add 2 day
}

What is the easiest way to accomplish this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

司马昭之心 2024-10-25 09:18:50

根据 MSDN 使用 DATENAME

示例:select datename(weekday, getdate()) 返回截至今天的星期四。

Use DATENAME as per MSDN.

Example: select datename(weekday, getdate()) returns Thursday as of today.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文