Untitled

mail@pastecode.io avatar
unknown
plain_text
14 days ago
163 B
2
Indexable
Never
SELECT c.customerState, COUNT (c.customerState) AS 'Count of Customers'
FROM Customer_T c
GROUP BY c.customerState 
HAVING c.customerState IN ('WA', 'OR' ,'CA')
Leave a Comment