Untitled

mail@pastecode.io avatar
unknown
plain_text
13 days ago
150 B
2
Indexable
Never
SELECT c.customerState, COUNT (c.customerState) AS 'Count of Customers'
FROM Customer_T c
GROUP BY c.customerState 
HAVING COUNT(c.customerID) > 1 
Leave a Comment