希望在同一结果中显示 7 天数据和 30 天数据的日期范围
我有一个连接两个表的查询,用于查找当前有效的成员 ID 的名称。我想要做的是使用相同的查询显示数据,为一名成员在一行中生成 7 天和 30 天的数据。
这就是我的想法
Member Name | Metric 1 (7 days) | Metric 2 (7 days) | Metric 3 (7 Days)| Metric 1 (30 days) | Metric 2 (30 days) | Metric 3 (30 days)
I have a query that joins two tables that looks up the name for a member id that currently works. What I am trying to do is display data using the same query to produce 7 days and 30 days worth in one line for one member.
Here's what I'm thinking
Member Name | Metric 1 (7 days) | Metric 2 (7 days) | Metric 3 (7 Days)| Metric 1 (30 days) | Metric 2 (30 days) | Metric 3 (30 days)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
那么,像这样的事情吗?
So, something like this?