SQL Server 2008-如果日期是周末,则增加到下周一
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从日期时间中提取它。
http://msdn.microsoft.com/en-us/library/bb762911.aspx保罗
Extract it from DateTime.
http://msdn.microsoft.com/en-us/library/bb762911.aspx
Paul
根据 MSDN 使用
DATENAME
。示例:
select datename(weekday, getdate())
返回截至今天的星期四。Use
DATENAME
as per MSDN.Example:
select datename(weekday, getdate())
returns Thursday as of today.