SQL Server 2005:如何减去 6 个月

发布于 2024-09-28 03:11:55 字数 186 浏览 3 评论 0原文

我有一个日期,假设今天

declare @d datetime
set @d = '20101014'

我需要的

select @d - <six month>

日期是包含从 @d 开始的过去六个月的实际天数。

I have a date, suppose today date

declare @d datetime
set @d = '20101014'

I need

select @d - <six month>

where is the real number of days that contains last six month, beginning from @d.

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

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

发布评论

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

评论(2

猫瑾少女 2024-10-05 03:11:55

您可以使用DATEADD

select DATEADD(month, -6, @d)

编辑:如果您需要 6 个月前的天数,可以使用 DATEDIFF

select DATEDIFF(day, @d, DATEADD(month, -6, @d))

You can use DATEADD:

select DATEADD(month, -6, @d)

EDIT: if you need the number of days up to 6 months ago you can use DATEDIFF:

select DATEDIFF(day, @d, DATEADD(month, -6, @d))
友谊不毕业 2024-10-05 03:11:55

另请检查这一点(开发此主题):

我需要根据条件选择算法 - 两个日期之间的天数是否与 6 个月内(​​从最后一个日期算起)一样多。

我是这样做的:

    case
      when
        DATEDIFF(day, DATEADD(month, -6, @pDateEnd), @pDateEnd)
        >
        DATEDIFF(day, @pDateBegin, @pDateEnd)
      then 'there is no 6-month difference between two dates'
      else 'there is 6-month difference ore more between two dates'
    end

Also check this up (developing this theme):

i need to choose the algorythm depending on the condition - if there are as many days between two dates as in 6 month (ago from the last date).

I did it in this way:

    case
      when
        DATEDIFF(day, DATEADD(month, -6, @pDateEnd), @pDateEnd)
        >
        DATEDIFF(day, @pDateBegin, @pDateEnd)
      then 'there is no 6-month difference between two dates'
      else 'there is 6-month difference ore more between two dates'
    end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文