gpt4 book ai didi

带有重复记录的 SQL 查询

转载 作者:行者123 更新时间:2023-12-04 16:25:12 28 4
gpt4 key购买 nike

我正在尝试在 SQL Server 中编写一个查询,以通过 customerID 找出每个客户是否有多行。
请告诉我。

这是表结构

Customer table
-----------------------------------------
orderID CustName CustomerID
---------------------------------------
100 test 123456
101 test 123456

Orders table
------------------------------------
pID OrderID
-----------------------------------
1 100
2 101

最佳答案

您可以使用 GROUP BY 查询以实现此目的:

select CustomerID, count(*) as NumDuplicates
from Customer
group by CustomerID
having count(*) > 1

关于带有重复记录的 SQL 查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3152224/

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