gpt4 book ai didi

sql - 根据 SQL Server 中的条件交叉加入组

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

我有 Item 和 Exam 表 -

enter image description here

我的愿望结果-

enter image description here

我尝试了很多,但我无法根据代码组将考试表加入项目表。

是否可以对这两个表进行交叉连接或任何其他连接以获得所需的结果?

最佳答案

你可以试试这个

SELECT A.Code, i.Item, A.Exam
FROM
(
SELECT Code,e.Exam
FROM Item i
CROSS JOIN Exam e
GROUP BY Code,e.Exam
) A
LEFT JOIN Item i ON i.Code= A.Code AND i.Exam = A.Exam

关于sql - 根据 SQL Server 中的条件交叉加入组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44916904/

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