来自 LeftJoin 的 MAX() 值的子查询

Posted

技术标签:

【中文标题】来自 LeftJoin 的 MAX() 值的子查询【英文标题】:Subquery for MAX() value from LeftJoin 【发布时间】:2020-11-05 15:12:53 【问题描述】:

我在 SQL Server 中有这个查询,我想知道它是否可以更短?

我已经对所有列进行了子查询(带有分组依据),只是为了获取来自表左连接的 3 个日期的 MAX() 值。

我想我不能没有子查询来获取 3 个日期的 MAX()。

SELECT otherCol1
    ,otherCol2 
    ,MAX(UnsubscribedDate) AS UnsubscribedDate
    ,MAX(OpenedDate) AS OpenedDate
    ,MAX(ClickedDate) AS ClickedDate
FROM (
    SELECT otherCol1
        ,otherCol2
        ,tu.JoinDate AS UnsubscribedDate
        ,trkOp.Clicktime AS OpenedDate
        ,trkRes.Clicktime AS ClickedDate
    FROM v_members_email_occurrence vmec
    LEFT JOIN tracking_unsubscribed tu WITH (NOLOCK) ON tu.ReportId = vmec.SendingId
    LEFT JOIN tracking_opened trkOp WITH (NOLOCK) ON trkOp.ReportId = vmec.SendingId
    LEFT JOIN tracking_result trkRes WITH (NOLOCK) ON trkRes.ReportId = vmec.SendingId
    WHERE vmec.MemberId = @MemberId
    ) AS Result
GROUP BY otherCol1
        ,otherCol2

【问题讨论】:

【参考方案1】:

您可以在没有子查询的情况下进行聚合:

SELECT otherCol1
    ,otherCol2
    ,MAX(tu.JoinDate) AS UnsubscribedDate
    ,MAX(trkOp.Clicktime) AS OpenedDate
    ,MAX(trkRes.Clicktime) AS ClickedDate
FROM v_members_email_occurrence vmec
LEFT JOIN tracking_unsubscribed tu WITH (NOLOCK) ON tu.ReportId = vmec.SendingId
LEFT JOIN tracking_opened trkOp WITH (NOLOCK) ON trkOp.ReportId = vmec.SendingId
LEFT JOIN tracking_result trkRes WITH (NOLOCK) ON trkRes.ReportId = vmec.SendingId
WHERE vmec.MemberId = @MemberId
GROUP BY otherCol1
        ,otherCol2

【讨论】:

以上是关于来自 LeftJoin 的 MAX() 值的子查询的主要内容,如果未能解决你的问题,请参考以下文章

查询收集返回多个值的子查询的最大值

MAX日期的Laravel子查询-与父级的子查询链接中的日期时间格式无效

列中有多个值的子查询[关闭]

从 Firebase 查询具有在 ArrayList 中找到的子值的对象

从sql中返回的查询值的子查询?

使用两个可以返回多个值的子查询的 SQL 之间的语句