If your companyID datatype is CHAR(2), it's pretty simple:
select companyID, companyname
where companyID like '[a-z][a-z]'
If it could potentially be longer than two characters and you want to find ones with exactly 2 alpha characters, it could get a little more complicated.