SQL分组时日期之间的差异

发布于 2024-08-26 01:30:17 字数 314 浏览 6 评论 0原文

我有一个包含 user_id 和 date_of_purchase 的购买表。

我需要能够选择在 12 个月内相互购买过 2 次的所有用户。日期可以是任何时间点,只要它们之间的间隔小于 12 个月即可。

例如,

user_id      date_of_purchase
123          01/Jan/2010
124          01/Aug/2010
123          01/Feb/2010
124          05/Aug/2008

在这个例子中我想要 user_id 123

I have a table of purchases containing a user_id and a date_of_purchase.

I need to be able to select all the users who have made 2 purchases within 12 months of each other. The dates can be any point in time as long as they are less than 12 months apart.

e.g.

user_id      date_of_purchase
123          01/Jan/2010
124          01/Aug/2010
123          01/Feb/2010
124          05/Aug/2008

In this example i want user_id 123

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

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

发布评论

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

评论(2

所谓喜欢 2024-09-02 01:30:17
select distinct user_id 
from MyTable t1
inner join MyTable t2 on t1.user_id = t2.user_id 
where t1.date_of_purchase - t2.date_of_purchase <= 365

注意:这不处理闰年。

select distinct user_id 
from MyTable t1
inner join MyTable t2 on t1.user_id = t2.user_id 
where t1.date_of_purchase - t2.date_of_purchase <= 365

Note: this does not handle leap years.

谁的新欢旧爱 2024-09-02 01:30:17

在 Oracle 中,有一个 DATE_DIFF 函数 - 我认为 MS 等效函数没有下划线 (DATEDIFF)。

In Oracle, there's a DATE_DIFF function - I think the MS equivalent has no underscore (DATEDIFF).

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