获取用户第二个月交易的所有交易详细信息
尝试获取所有客户的第二个交易月份详细信息
Date User_id amount
2021-11-01 1 100
2021-11-21 1 200
2021-12-20 2 110
2022-01-20 2 200
2022-02-04 1 50
2022-02-21 1 100
2022-03-22 2 200
对于每个客户,获取其第二笔交易月份的所有记录(特定用户在一个月和一天内可以有多个交易)
预期输出
Date User_id amount
2022-02-04 1 50
2022-02-21 1 100
2022-01-20 2 200
Trying to get the 2nd transaction month details for all the customers
Date User_id amount
2021-11-01 1 100
2021-11-21 1 200
2021-12-20 2 110
2022-01-20 2 200
2022-02-04 1 50
2022-02-21 1 100
2022-03-22 2 200
For every customer get all the records in the month of their 2nd transaction (There can be multiple transaction in a month and a day by a particular user)
Expected Output
Date User_id amount
2022-02-04 1 50
2022-02-21 1 100
2022-01-20 2 200
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
dense_rank
:Fiddle
You can use
dense_rank
:Fiddle
如果
dense_rank
是一个选项,您可以:请注意,可以使用一个cte编写以上内容。
If
dense_rank
is an option you can:Note that it is possible to write the above using one cte.