gpt4 book ai didi

SQL 服务器选择

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

我有下表,名为 tblMastTestElement

cTestCode    |  cElementCode
24HCRECLE | CRE
CALCRECLE | CRE
CALEXR | CRE
CRE | CRE
CRECLE | CRE
EGFR | CRE
EGFR | EG

我需要一个查询来将 EGFR 作为测试代码返回,其中仅包含元素 CRE 和 EG

像这样

Select cTestCode
from tblMastTestElement
where cElementCode IN('CRE' And 'EG')

最佳答案

要为 “CRE”和“EG”(不是)返回具有 cElementCode 的 cTestCode,您可以使用。

SELECT cTestCode
FROM tblMastTestElement
WHERE cElementCode IN ( 'CRE', 'EG' )
GROUP BY cTestCode
HAVING COUNT(DISTINCT cElementCode) = 2

关于SQL 服务器选择,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37734809/

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