查找列中的重复条目
我编写此查询是为了查找 table1 中重复的 CTN 记录。所以我的想法是,如果 CTN_NO 出现超过两次或更高,我希望它显示在顶部的 SELECT * 语句输出中。
我尝试了以下子查询逻辑,但我需要拉取
SELECT *
table1
WHERE S_IND='Y'
and CTN_NO = (select CTN_NO
from table1
where S_IND='Y'
and count(CTN_NO) < 2);
order by 2
I am writing this query to find duplicate CTN Records in table1. So my thinking is if the CTN_NO appears more than twice or higher , I want it shown in my SELECT * statement output on top.
I tried the following sub-query logic but I need pulls
SELECT *
table1
WHERE S_IND='Y'
and CTN_NO = (select CTN_NO
from table1
where S_IND='Y'
and count(CTN_NO) < 2);
order by 2
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用:
...将显示表中具有重复项的
ctn_no
值。向 WHERE 添加条件将允许您进一步调整重复项:如果您想查看与重复项关联的其他列值,则需要使用自连接:
Using:
...will show you the
ctn_no
value(s) that have duplicates in your table. Adding criteria to the WHERE will allow you to further tune what duplicates there are:If you want to see the other column values associated with the duplicate, you'll want to use a self join:
尝试这个查询..它使用分析函数 SUM:
如果 ctn_no 重复超过 2 次,我不确定为什么将记录识别为重复项。对我来说,它重复不止一次,它是重复的。在这种情况下,将查询的 las 部分更改为
WHERE cnt > 1
Try this query.. It uses the Analytic function SUM:
Am not sure why you are identifying a record as a duplicate if the ctn_no repeats more than 2 times. FOr me it repeats more than once it is a duplicate. In this case change the las part of the query to
WHERE cnt > 1