Untitled

 avatar
unknown
plain_text
a year ago
163 B
9
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