hi does anyone know how to make a mysql syntax that would return all entries begin with A - G
for example, i tried
SELECT * FROM CollegeBirdHouses WHERE ItemCategory LIKE 'A%' OR 'B%' OR 'C%' OR 'D%' OR 'E%' OR 'F%' OR 'G%'
but it only returns the ones begin with A. but i want it to return ones with A - G.. all of them but with one query.. is that possible?
thanks!!