gpt4 book ai didi

sql - case within 加入 "ON"子句

转载 作者:行者123 更新时间:2023-12-02 08:18:25 25 4
gpt4 key购买 nike

我正在尝试做这样的事情......

SELECT lc.Location, count(h.empID) as 'Count', lu.LBL
FROM swam.lookup lu
LEFT JOIN swam.empTable h
ON CASE
WHEN lu.sac is null
THEN lu.POS = h.POS
ELSE (
lu.POS = h.POS
and
lu.sac = h.sac)
INNER JOIN swam.Locations lc
ON h.LocationID = lc.LocationID
GROUP BY lc.Location, lu.LBL
ORDER BY lc.Location

因此,如果 lu.sac 为空,则仅在一个公共(public)列上连接表。如果不为空,则必须同时使用 POS 和 SAC 才能加入。

这可能吗?

最佳答案

不要使用大小写。只需使用直接 bool 逻辑:

FROM swam.lookup lu LEFT JOIN
swam.empTable h
ON lu.POS = h.POS AND
(lu.sac is null OR lu.sac = h.sac) INNER JOIN
swam.Locations fs
ON h.LocationID = lc.LocationID

作为奖励,数据库引擎还可以在任一(或两个)表中利用 pos 上的索引。

关于sql - case within 加入 "ON"子句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39850560/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com