gpt4 book ai didi

sql - 查找和显示重复项

转载 作者:搜寻专家 更新时间:2023-10-30 20:33:01 28 4
gpt4 key购买 nike

我有一张 table 。我想在此表中搜索重复的标题。
假设我的数据如下:

title1, title2, title3, title1, title4, title2, title9

我想让我的查询搜索此表并仅输出重复项。所以输出看起来像:
标题1
标题1
标题2
标题2

我知道如何找到重复项,但它只显示了一个重复项,而不是两个。

SELECT id, title, artist_id FROM sm019_songs GROUP BY title HAVING count(title) > 1

有什么想法吗?

最佳答案

这是使用子查询执行此操作的一种方法。首先将子查询加载到临时表中可能是有意义的。 (这将在 SQL 服务器中工作,不确定确切的 MySql 语法是什么。)

select id, title, artist_id
from sm019_songs
where title in
(
SELECT title
FROM sm019_songs
GROUP BY title
HAVING count(title) > 1
)

关于sql - 查找和显示重复项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/754580/

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