一个 Pivot 中的 2 个不同聚合

发布于 2024-09-14 06:05:11 字数 226 浏览 4 评论 0原文

我有数据透视表

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 技术交流群。

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

发布评论

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

评论(1

忘东忘西忘不掉你 2024-09-21 06:05:11

你能显示整个查询吗?我建议将其转储到临时表(或您喜欢使用的任何表)中,然后使用 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

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