gpt4 book ai didi

sql - 根据多列删除重复项

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

我使用以下内容列出了重复项:

select s.MessageId, t.* 
from Message s
join (
select ToUserId, FromUserId, count(*) as qty
from Message
group by ToUserId, FromUserId
having count(*) > 1
) t on s.ToUserId = t.ToUserId and s.FromUserId = t.FromUserId

现在,如何删除除一条消息之外的所有消息(我正在尝试删除重复项,以便可以在 FromUserId 和 ToUserId 上应用唯一索引)。

最佳答案

使用 cte并分配行号,以便删除除重复对之外的所有行。

with rownums as 
(select m.*,
row_number() over(partition by ToUserId, FromUserId order by ToUserId, FromUserId) as rnum
from Message m)
delete r
from rownums r
where rnum > 1

关于sql - 根据多列删除重复项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41435527/

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