一个 Pivot 中的 2 个不同聚合
我有数据透视表
PIVOT
(
MIN(DateId)
FOR Stage IN
(
[Start], [Alpha], [Beta], [Release]
)
) as p
,我只想要 [Start] 列的 MIN 和其他所有列的 Max。 我将如何实现这一目标?
I have the pivot
PIVOT
(
MIN(DateId)
FOR Stage IN
(
[Start], [Alpha], [Beta], [Release]
)
) as p
I only want the MIN for the [Start] column and Max for every other column.
How would I go about achieving this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你能显示整个查询吗?我建议将其转储到临时表(或您喜欢使用的任何表)中,然后使用 MAX(DateId) 创建另一个数据透视表并将它们简单地连接在一起。您还可以通过创建另一个 PIVOT http://mangalpardeshi 来使用更多列。 blogspot.com/2009/06/pivot-multiple-columns.html
Can you show the entire query? I would suggest dumping that into a temp table (or whatever you like using) and then creating another pivot using the MAX(DateId) and simply joining them together. You can also use more columns by just creating another PIVOT http://mangalpardeshi.blogspot.com/2009/06/pivot-multiple-columns.html