Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
[navy]SELECT substring(stateProvincenm,1,1),
stateProvincenm
FROM StateProvince
WHERE countryCd='US' AND substring(stateProvincenm,1,1) in ('A','C')
ORDER BY substring(stateProvincenm,1,1)
COMPUTE count(substring(stateProvincenm,1,1)) by substring(stateProvincenm,1,1)
[/navy]