开发者

SQL query with duplicate records

开发者 https://www.devze.com 2023-01-05 02:41 出处:网络
I am trying to write a query in SQL server to find out if there are any multiple rows for each customer by 开发者_如何学GocustomerID.

I am trying to write a query in SQL server to find out if there are any multiple rows for each customer by 开发者_如何学GocustomerID. Please let me know.

Here is the table structure

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

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


You can use a GROUP BY query to achieve this:

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


To see how many of each customer you have:

SELECT COUNT(*), CustName, CustomerID
from Customer
Group by CustName, CustomerID

You can use a having clause to limit to just duplicates:

SELECT COUNT(*), CustName, CustomerID
from Customer
Group by CustName, CustomerID
having count(*) > 1

UPDATE

To get those with successful orders:

select count(*), CustName, CustomerID
from(
  SELECT CustName, CustomerID
  from Customer, orders
  where customer.orderID = orders.orderID
  and orders.success = 1) subquery
group by subquery.CustName, subquery.CustomerID
having count(*) > 1; 


select CustomerID, count(1)
  from Customer
 group by CustomerID
having count(1) > 1
0

精彩评论

暂无评论...
验证码 换一张
取 消