gpt4 book ai didi

sql-server - 如何检测 SQL Server 表中的重复行?

转载 作者:行者123 更新时间:2023-12-01 18:37:38 26 4
gpt4 key购买 nike

在 10 列/50K 行表中检测重复项的最有效方法是什么?我正在使用 MSSQL 8.0

最佳答案

展示其他人所描述的示例:

SELECT
Col1, -- All of the columns you want to dedupe on
Col2, -- which is not neccesarily all of the columns
Col3, -- in the table
Col4,
Col5,
Col6,
Col7,
Col8,
Col9,
Col10
FROM
MyTable
GROUP BY
Col1,
Col2,
Col3,
Col4,
Col5,
Col6,
Col7,
Col8,
Col9,
Col10
HAVING
COUNT(*) > 1

关于sql-server - 如何检测 SQL Server 表中的重复行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/306743/

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