gpt4 book ai didi

sql - 从数据库表中选择重复条目

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

我在表中有两列,分别是 columnA 和 columnB。我想为 columnA 选择重复条目,其中 columnB=xx 或 columnB=yy。例如

columnA columnB
12 abc
12 pqr
11 abc
10 pqr
9 xyz

对于上表,我想得到 12 作为结果。这对于 columnB=abc 或 columnB=pqr 很常见。

请帮我建立一个sql查询。我尝试使用 count(*) 但无法得到结果。

最佳答案

SQL Fiddle :

SELECT a.columnA
FROM MyTable a
INNER JOIN MyTable b ON a.columnA = b.columnA
WHERE a.columnB = 'abc'
AND b.columnB = 'pqr';

关于sql - 从数据库表中选择重复条目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24610441/

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