Untitled

 avatar
unknown
plain_text
10 months ago
163 B
7
Indexable
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')
Editor is loading...
Leave a Comment