Untitled

mail@pastecode.io avatar
unknown
plain_text
a month ago
163 B
2
Indexable
Never
SELECT  c.customerName, c.customerCity , c.customerState
FROM Customer_T c 
WHERE c.customerState IN ('WA', 'OR' ,'CA')
ORDER BY c.customerName, c.customerState
Leave a Comment