I had a look at using Like and was unable to see how you coud do it unless this format is valid
select * from table where left(field1,1) LIKE '[A-H,a-h]'
So, I suggest you try this
select * from table where upper(left(field1,1)) between 'A' and 'H'
That should work, but I;ve not tried it.
John